Files
PyroFetes/PyroFetes/DTO/Supplier/Request/CreateSupplierDto.cs
2025-11-14 18:11:54 +01:00

12 lines
356 B
C#

namespace PyroFetes.DTO.Supplier.Request;
public class CreateSupplierDto
{
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; }
}