11 lines
327 B
C#
11 lines
327 B
C#
using Wino.Core.Domain.Entities.Calendar;
|
|
|
|
namespace Wino.Core.Domain.Models.Calendar;
|
|
|
|
public sealed class CalendarReminderNotificationRequest
|
|
{
|
|
public CalendarItem CalendarItem { get; init; } = null!;
|
|
public long ReminderDurationInSeconds { get; init; }
|
|
public string ReminderKey { get; init; } = string.Empty;
|
|
}
|