Clock/Models/ITimer.cs (
5
lines of code) (
raw
):
namespace Clock.Models { using System; internal interface ITimer: IObservable<Tick> { } }