forked from sanchezvem/PyroFetes
7 lines
164 B
C#
7 lines
164 B
C#
namespace PyroFetes.DTO.Supplier.Request;
|
|
|
|
public class PatchSupplierDeliveryDelayDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int DeliveryDelay { get; set; }
|
|
} |