Creating all supplier dto

This commit is contained in:
2025-10-09 17:47:12 +02:00
parent 04cb47802b
commit a262fb094c
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace PyroFetes.DTO.Supplier.Request;
public class PatchSupplierDeliveryDelayDto
{
public int Id { get; set; }
public int DeliveryDelay { get; set; }
}