17 lines
722 B
C#
17 lines
722 B
C#
using System;
|
||
using Volo.Abp.Application.Dtos;
|
||
|
||
namespace Erp.Platform.Intranet;
|
||
|
||
public class ShuttleRouteDto : FullAuditedEntityDto<Guid>
|
||
{
|
||
public Guid? TenantId { get; set; }
|
||
|
||
public string Type { get; set; } // Örn: "Servis", "Transfer", "Ring"
|
||
public string Name { get; set; } // Hat adı veya açıklaması
|
||
public string DepartureTime { get; set; } // Kalkış saati
|
||
public string ArrivalTime { get; set; } // Varış saati
|
||
public int Capacity { get; set; } // Toplam kapasite
|
||
public int Available { get; set; } // Mevcut boş koltuk sayısı
|
||
public string[] Route { get; set; } // JSON veya metin formatında güzergah bilgisi
|
||
}
|