phronCare/Domain/Dtos/QuoteCustomer.cs

13 lines
332 B
C#
Raw Normal View History

2025-05-15 08:57:56 -03:00
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; } = "";
}
}