mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
15 lines
271 B
C#
15 lines
271 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public enum ReminderMonthInterval
|
|
{
|
|
Other = 0,
|
|
OneMonth = 1,
|
|
ThreeMonths = 3,
|
|
SixMonths = 6,
|
|
OneYear = 12,
|
|
TwoYears = 24,
|
|
ThreeYears = 36,
|
|
FiveYears = 60
|
|
}
|
|
}
|