Files
Wino-Mail/Wino.Core.Domain/Models/Calendar/CalendarRenderOptions.cs
T

14 lines
411 B
C#
Raw Normal View History

2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Models.Calendar;
public class CalendarRenderOptions
2024-11-10 23:28:25 +01:00
{
2025-02-16 11:54:23 +01:00
public CalendarRenderOptions(DateRange dateRange, CalendarSettings calendarSettings)
2024-11-10 23:28:25 +01:00
{
2025-02-16 11:54:23 +01:00
DateRange = dateRange;
CalendarSettings = calendarSettings;
2024-11-10 23:28:25 +01:00
}
2025-02-16 11:54:23 +01:00
public int TotalDayCount => DateRange.TotalDays;
public DateRange DateRange { get; }
public CalendarSettings CalendarSettings { get; }
2024-11-10 23:28:25 +01:00
}