method to calculate for recurring reminders.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-01-20 08:21:06 -07:00
parent d60c3d3ea6
commit f4538ffabd
7 changed files with 90 additions and 14 deletions

View File

@@ -8,6 +8,9 @@
public int Mileage { get; set; }
public string Description { get; set; }
public string Notes { get; set; }
public bool IsRecurring { get; set; } = false;
public ReminderMileageInterval ReminderMileageInterval { get; set; } = ReminderMileageInterval.FiveThousandMiles;
public ReminderMonthInterval ReminderMonthInterval { get; set; } = ReminderMonthInterval.OneYear;
public ReminderMetric Metric { get; set; } = ReminderMetric.Date;
}
}