Files
pyrofetes-backend/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs
T
2026-05-24 17:22:03 +01:00

16 lines
474 B
C#

using PyroFetes.DTO.Price.Response;
namespace PyroFetes.DTO.Supplier.Response;
public class GetSupplierDto
{
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; }
public List<GetPriceDto>? Prices { get; set; }
}