Proper handling of DateTimeOffset, support for Multi-Day events and reacting to adding/removing events for the days.

This commit is contained in:
Burak Kaan Köse
2024-12-30 23:10:51 +01:00
parent 8cc7d46d7b
commit 8fd09bcad4
23 changed files with 340 additions and 234 deletions

View File

@@ -1,9 +1,9 @@
using Wino.Core.Domain.Interfaces;
using Wino.Core.Domain.Entities.Calendar;
namespace Wino.Messaging.Client.Calendar
{
/// <summary>
/// Raised when event is added to database.
/// </summary>
public record CalendarEventAdded(ICalendarItem CalendarItem);
public record CalendarEventAdded(CalendarItem CalendarItem);
}