phronCare/Domain/Dtos/QuoteCustomer.cs
Leandro Hernan Rojas 5ec19044f2
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m14s
Update GetByIdDTO
2025-05-16 17:19:40 -03:00

10 lines
305 B
C#

namespace Domain.Dtos
{
public class QuoteCustomerDto
{
public string Name { get; set; } = "";
public string Address { get; set; } = "";
public string IvaCondition { get; set; } = "";
public List<QuoteCustomerDocumentDto> Documents { get; set; } = new();
}
}