18 lines
593 B
C#
18 lines
593 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;
|
|
}
|
|
}
|