Reminders.

This commit is contained in:
Burak Kaan Köse
2026-01-01 15:02:40 +01:00
parent 3b485dc1fe
commit a64627e7d6
14 changed files with 420 additions and 24 deletions
@@ -10,6 +10,10 @@ public class Reminder
public Guid Id { get; set; }
public Guid CalendarItemId { get; set; }
public DateTimeOffset ReminderTime { get; set; }
/// <summary>
/// Duration in seconds before the event start time when the reminder should trigger.
/// For example, 900 seconds = 15 minutes before event.
/// </summary>
public long DurationInSeconds { get; set; }
public CalendarItemReminderType ReminderType { get; set; }
}