Mostly working create rent. Awaiting migration

This commit is contained in:
Dimitar Byalkov
2022-04-09 00:16:58 +03:00
parent 91e835f63d
commit c04ffc5020
3 changed files with 27 additions and 34 deletions

View File

@@ -12,22 +12,12 @@ namespace Data.Entities
[Required]
[Key]
public int Id { get; set; }
[Required]
public string Brand { get; set; }
[Required]
public string Model { get; set; }
[Required]
public int Year { get; set; }
[Required]
public int CountPassengerSeats { get; set; }
public string Description { get; set; }
[Required]
public decimal PriceForDay { get; set; }
}
}