Files
Wino-Mail/Wino.Core.Domain/Models/Calendar/CalendarEventComposeNavigationArgs.cs
2026-03-06 17:46:38 +01:00

14 lines
398 B
C#

using System;
namespace Wino.Core.Domain.Models.Calendar;
public class CalendarEventComposeNavigationArgs
{
public Guid? SelectedCalendarId { get; set; }
public string Title { get; set; } = string.Empty;
public string Location { get; set; } = string.Empty;
public bool IsAllDay { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
}