phronCare/Domain/Dtos/QuoteCustomerDocumentDto.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

8 lines
186 B
C#

namespace Domain.Dtos
{
public class QuoteCustomerDocumentDto
{
public string DocumentType { get; set; } = "";
public string Number { get; set; } = "";
}
}