forked from sanchezvem/PyroFetes
18 lines
567 B
C#
18 lines
567 B
C#
using PyroFetes.DTO.Price.Response;
|
|
using PyroFetes.DTO.Product.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<GetProductDto>? Products { get; set; }
|
|
public List<GetPriceDto>? Prices { get; set; }
|
|
} |