34 lines
842 B
C#
34 lines
842 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace TIAM.Entities.Drivers
|
|
{
|
|
public class Car : IEntityGuid, ITimeStampModified
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public int CountryCode { get; set; }
|
|
|
|
public string LicencePlate { get; set; }
|
|
public string Color { get; set; }
|
|
public string Manufacture{ get; set; }
|
|
public string CarModel { get; set; }
|
|
|
|
public int YearOfMake { get; set; }
|
|
public int SeetNumber { get; set; }
|
|
|
|
public CarMotorType CarMotorType { get; set; }
|
|
|
|
|
|
|
|
public DateTime Modified { get; set; }
|
|
public DateTime Created { get; set; }
|
|
}
|
|
}
|