mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
15 lines
465 B
C#
15 lines
465 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;
|
|
}
|
|
}
|