line-gestao-api/Services/NotificationOptions.cs

9 lines
260 B
C#

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