Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/DTO/Supplier/Request/UpdateSupplierDto.cs
T
2026-05-05 10:53:52 +02:00

13 lines
388 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 string? ZipCode { get; set; }
public string? City { get; set; }
public int DeliveryDelay { get; set; }
}