12 lines
223 B
C#
12 lines
223 B
C#
using System;
|
|
using System.Globalization;
|
|
|
|
namespace Wino.Core.Domain.Models.Calendar;
|
|
|
|
public interface IDateContextProvider
|
|
{
|
|
CultureInfo Culture { get; }
|
|
TimeZoneInfo TimeZone { get; }
|
|
DateOnly GetToday();
|
|
}
|