Files
AP-WEB-PF3/PF3/DTO/Truck/Request/UpdateTruckDto.cs
2025-10-02 16:53:02 +02:00

11 lines
307 B
C#

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