namespace CarCareTracker.Models { public class TaxRecord { public int Id { get; set; } public int VehicleId { get; set; } public DateTime Date { get; set; } public string Description { get; set; } public decimal Cost { get; set; } public string Notes { get; set; } public bool IsRecurring { get; set; } = false; public ReminderMonthInterval RecurringInterval { get; set; } = ReminderMonthInterval.OneYear; public List Files { get; set; } = new List(); public List Tags { get; set; } = new List(); } }