mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-11 04:37:03 -06:00
22 lines
725 B
C#
22 lines
725 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class ReminderRecordViewModel
|
|
{
|
|
public int Id { get; set; }
|
|
public int VehicleId { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public int Mileage { get; set; }
|
|
public string Description { get; set; }
|
|
public string Notes { get; set; }
|
|
/// <summary>
|
|
/// Reason why this reminder is urgent
|
|
/// </summary>
|
|
public ReminderMetric Metric { get; set; } = ReminderMetric.Date;
|
|
public ReminderUrgency Urgency { get; set; } = ReminderUrgency.NotUrgent;
|
|
/// <summary>
|
|
/// Recurring Reminders
|
|
/// </summary>
|
|
public bool IsRecurring { get; set; } = false;
|
|
}
|
|
}
|