Files
PyroFetes-Sujet1/PyroFetes/DTO/Supplier/Request/PatchSupplierDeliveryDelayDto.cs
2025-10-09 17:47:12 +02:00

7 lines
164 B
C#

namespace PyroFetes.DTO.Supplier.Request;
public class PatchSupplierDeliveryDelayDto
{
public int Id { get; set; }
public int DeliveryDelay { get; set; }
}