namespace line_gestao_api.Services; public class NotificationOptions { public int CheckIntervalMinutes { get; set; } = 60; public bool NotifyAllFutureDates { get; set; } = true; public List ReminderDays { get; set; } = new() { 30, 15, 7 }; }