lubelog/Models/Vehicle.cs
DESKTOP-GENO133\IvanPlex a54857c6bf added vehicle tags.
2024-01-31 08:10:49 -07:00

16 lines
534 B
C#

namespace CarCareTracker.Models
{
public class Vehicle
{
public int Id { get; set; }
public string ImageLocation { get; set; } = "/defaults/noimage.png";
public int Year { get; set; }
public string Make { get; set; }
public string Model { get; set; }
public string LicensePlate { get; set; }
public bool IsElectric { get; set; } = false;
public bool UseHours { get; set; } = false;
public List<string> Tags { get; set; } = new List<string>();
}
}