2024-12-30 23:10:51 +01:00
|
|
|
|
using Wino.Core.Domain.Entities.Calendar;
|
2024-11-10 23:28:25 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Wino.Messaging.Client.Calendar
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Raised when event is added to database.
|
|
|
|
|
|
/// </summary>
|
2024-12-30 23:10:51 +01:00
|
|
|
|
public record CalendarEventAdded(CalendarItem CalendarItem);
|
2024-11-10 23:28:25 +01:00
|
|
|
|
}
|