forked from sanchezvem/pyrofetes-backend
16 lines
474 B
C#
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; }
|
|
} |