11 lines
315 B
C#
11 lines
315 B
C#
namespace PyroFetes.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 string? Statut { get; set; }
|
|
public int? ShowId { get; set; }
|
|
} |