added ability to add custom month interval to reminder.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-02-10 09:33:30 -07:00
parent cd9a673e62
commit 09fbc37472
7 changed files with 76 additions and 19 deletions

View File

@@ -10,6 +10,7 @@
public string Notes { get; set; }
public bool IsRecurring { get; set; } = false;
public int CustomMileageInterval { get; set; } = 0;
public int CustomMonthInterval { get; set; } = 0;
public ReminderMileageInterval ReminderMileageInterval { get; set; } = ReminderMileageInterval.FiveThousandMiles;
public ReminderMonthInterval ReminderMonthInterval { get; set; } = ReminderMonthInterval.OneYear;
public ReminderMetric Metric { get; set; } = ReminderMetric.Date;