13 lines
332 B
C#
13 lines
332 B
C#
namespace Domain.Dtos
|
|
{
|
|
public class QuoteCustomerDto
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Cuit { get; set; } = "";
|
|
public string IngresosBrutos { get; set; } = "";
|
|
public string Address { get; set; } = "";
|
|
public string IvaCondition { get; set; } = "";
|
|
}
|
|
|
|
}
|