Files

14 lines
398 B
C#
Raw Permalink Normal View History

2026-03-06 17:46:38 +01:00
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; }
}