using System;
using Wino.Core.Domain.Enums;
namespace Wino.Messaging.Client.Calendar
{
///
/// Raised when a new calendar range is requested for drawing.
///
/// Type of the calendar.
/// Exact date to highlight.
/// How many days to load with Day calendar display type.
/// Remove all days and force re-render of everything. Used when settings are updated.
public record LoadCalendarMessage(DateTime DisplayDate, CalendarInitInitiative CalendarInitInitiative, bool ForceRedraw = false);
}