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