forked from sanchezvem/PyroFetes
11 lines
307 B
C#
11 lines
307 B
C#
namespace API.DTO.Supplier.Request;
|
|
|
|
public class CreateSupplierDto
|
|
{
|
|
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; }
|
|
} |