firstCommit

This commit is contained in:
ani_konarcheva@abv.bg
2022-03-25 16:24:21 +02:00
parent 71b378b8ee
commit 982a6a66dd
193 changed files with 63187 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.Entities
{
public class Car
{
public int Id { get; set; }
public string Brand { get; set; }
public string Model { get; set; }
public int Year { get; set; }
public int CountPassengerSeats { get; set; }
public string Description { get; set; }
public decimal PriceForDay { get; set; }
}
}