namespace Clock.ViewModels { /// /// Design time view model. /// // ReSharper disable once ClassNeverInstantiated.Global [ExcludeFromCodeCoverage] internal class ClockViewModelDesignTime: IClockViewModel { public string Time { get; } = "01:15:17"; public string Date { get; } = "01.01.2020"; } }