Files

12 lines
223 B
C#
Raw Permalink Normal View History

2026-03-21 00:58:01 +01:00
using System;
using System.Globalization;
namespace Wino.Core.Domain.Models.Calendar;
public interface IDateContextProvider
{
CultureInfo Culture { get; }
TimeZoneInfo TimeZone { get; }
DateOnly GetToday();
}