10 lines
274 B
C#
10 lines
274 B
C#
namespace PF3.DTO.Truck.Request;
|
|
|
|
public class CreateTruckDto
|
|
{
|
|
public string? Type { get; set; }
|
|
public double? MaxExplosiveCapacity { get; set; }
|
|
public string? Sizes { get; set; }
|
|
public bool? Statut { get; set; }
|
|
public int? ShowId { get; set; }
|
|
} |