Files
PF3-fork/PyroFetes/DTO/Truck/Response/ReadTruckDto.cs
2025-11-13 15:11:12 +01:00

11 lines
314 B
C#

namespace PyroFetes.DTO.Truck.Response;
public class ReadTruckDto
{
public int? Id { get; set; }
public string? Type { get; set; }
public double? MaxExplosiveCapacity { get; set; }
public string? Sizes { get; set; }
public string? Statut { get; set; }
public int? ShowId { get; set; }
}