Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 |
|
---|
4 | namespace ocrent;
|
---|
5 |
|
---|
6 | public 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.