Initial event composing.

This commit is contained in:
Burak Kaan Köse
2026-03-06 17:46:38 +01:00
parent e1be644631
commit 6608baed69
27 changed files with 1938 additions and 13 deletions
@@ -0,0 +1,13 @@
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; }
}