source: Application/Models/DataTransferObjects/Serach/CarsDTO.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: 872 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace 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.