Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace Models.DataTransferObjects.Serach
|
---|
8 | {
|
---|
9 | public class CarsDTO
|
---|
10 | {
|
---|
11 | public int CarId { get; set; }
|
---|
12 | public string Brand { get; set; }
|
---|
13 | public string Model { get; set; }
|
---|
14 | public string Color { get; set; }
|
---|
15 | public int ModelYear { get; set; }
|
---|
16 | public int NumSeats { get; set; }
|
---|
17 | public int NumOfDoors { get; set; }
|
---|
18 | public string Fuel { get; set; }
|
---|
19 | public string Transmission { get; set; }
|
---|
20 | public string FuelEfficiency { get; set; }
|
---|
21 | public double DailyRentalPrice { get; set; }
|
---|
22 | public string City { get; set; }
|
---|
23 | public bool IsAvailable { get; set; }
|
---|
24 | public string ImgUrl { get; set; }
|
---|
25 | public string CompanyName { get; set; }
|
---|
26 |
|
---|
27 | }
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.