Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/DTO/Supplier/Request/PatchSupplierDeliveryDelayDto.cs
T
2026-05-05 10:53:52 +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; }
}