forked from sanchezvem/PyroFetes
13 lines
382 B
C#
13 lines
382 B
C#
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 int ZipCode { get; set; }
|
|
public string? City { get; set; }
|
|
public int DeliveryDelay { get; set; }
|
|
} |