forked from sanchezvem/PyroFetes
12 lines
337 B
C#
12 lines
337 B
C#
namespace API.DTO.Supplier.Response;
|
|
|
|
public class GetSupplierDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Adress { get; set; }
|
|
public int ZipCode { get; set; }
|
|
public string City { get; set; }
|
|
} |