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

13 lines
384 B
C#

namespace PyroFetes.DTO.Supplier.Request;
public class UpdateSupplierDto
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Email { get; set; }
public string? Phone { get; set; }
public string? Address { get; set; }
public int ZipCode { get; set; }
public string? City { get; set; }
public int DeliveryDelay { get; set; }
}