phronCare/Domain/Dtos/QuoteCustomer.cs

10 lines
305 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 Address { get; set; } = "";
public string IvaCondition { get; set; } = "";
2025-05-16 17:19:40 -03:00
public List<QuoteCustomerDocumentDto> Documents { get; set; } = new();
2025-05-15 08:57:56 -03:00
}
2025-05-16 17:19:40 -03:00
}