initalisation

This commit is contained in:
2025-11-13 14:13:26 +01:00
parent 6a813fc35a
commit 55f92ad761
40 changed files with 755 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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; }
}