erp-platform/api/src/Erp.Platform.Application.Contracts/Intranet/ShuttleRouteDto.cs
2025-11-12 15:59:31 +03:00

17 lines
722 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}