Clock/ViewModels/IClockViewModel.cs (8 lines of code) (raw):

namespace Clock.ViewModels { public interface IClockViewModel { string Time { get; } string Date { get; } } }