26 lines
495 B
C#
26 lines
495 B
C#
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; }
|
|
}
|
|
}
|