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