Truck & Staff DTO

This commit is contained in:
2025-10-02 16:53:02 +02:00
parent a179a3fab0
commit 801dc9dec8
12 changed files with 77 additions and 4 deletions

View File

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