Clock/Models/IClock.cs (8 lines of code) (raw):

namespace Clock.Models { using System; internal interface IClock { DateTimeOffset Now { get; } } }