Files
AP-WEB-PF3/PF3/DTO/Truck/Request/CreateTruckDto.cs
2025-10-16 17:00:36 +02:00

10 lines
276 B
C#

namespace PF3.DTO.Truck.Request;
public class CreateTruckDto
{
public string? Type { get; set; }
public string? MaxExplosiveCapacity { get; set; }
public string? Sizes { get; set; }
public string? Statut { get; set; }
public int? ShowId { get; set; }
}