erp-platform/api/src/Kurs.Platform.Domain/Entities/Tenant/Administration/Vehicle.cs

29 lines
830 B
C#
Raw Normal View History

2025-10-03 18:10:12 +00:00
using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Kurs.Platform.Entities;
public class Vehicle : FullAuditedEntity<Guid>, IMultiTenant
{
public Guid? TenantId { get; set; }
public string Plate { get; set; }
public string Brand { get; set; }
public int? ModelYear { get; set; }
public string DriverNationalId { get; set; }
public string DriverName { get; set; }
public string DriverPhone1 { get; set; }
public string DriverPhone2 { get; set; }
public string AssistantDriverNationalId { get; set; }
public string AssistantDriverName { get; set; }
public string AssistantDriverPhone1 { get; set; }
public string AssistantDriverPhone2 { get; set; }
public string Status { get; set; }
Guid? IMultiTenant.TenantId => TenantId;
}