2025-11-11 19:49:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Erp.Platform.Intranet;
|
|
|
|
|
|
|
|
|
|
|
|
public class ShuttleRouteDto : FullAuditedEntityDto<Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
|
|
|
2025-11-12 12:59:31 +00:00
|
|
|
|
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
|
2025-11-11 19:49:52 +00:00
|
|
|
|
public int Capacity { get; set; } // Toplam kapasite
|
2025-11-12 12:59:31 +00:00
|
|
|
|
public int Available { get; set; } // Mevcut boş koltuk sayısı
|
|
|
|
|
|
public string[] Route { get; set; } // JSON veya metin formatında güzergah bilgisi
|
2025-11-11 19:49:52 +00:00
|
|
|
|
}
|