using System; namespace Wino.Core.Domain.Models.Calendar; public class CalendarPageNavigationArgs { /// /// When the app launches, automatically request the default calendar navigation options. /// public bool RequestDefaultNavigation { get; set; } /// /// Display the calendar view for the specified date. /// public DateTime NavigationDate { get; set; } }