source: Application/Models/DatabaseModels/Model.cs

Last change on this file was f5f7c24, checked in by 192011 <mk.snicker@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 645 bytes
RevLine 
[f5f7c24]1using System;
2using System.Collections.Generic;
3
4namespace ocrent;
5
6public partial class Model
7{
8 public int ModelId { get; set; }
9
10 public string ModelName { get; set; } = null!;
11
12 public string Color { get; set; } = null!;
13
14 public DateOnly ModelYear { get; set; }
15
16 public int NumOfSeats { get; set; }
17
18 public int NumOfDoors { get; set; }
19
20 public string Fuel { get; set; } = null!;
21
22 public string Transmission { get; set; } = null!;
23
24 public string VehicleType { get; set; } = null!;
25
26 public string? ImgUrl { get; set; }
27
28 public virtual ICollection<Vehicle> Vehicles { get; } = new List<Vehicle>();
29}
Note: See TracBrowser for help on using the repository browser.