phronCare/Domain/Dtos/QuoteCustomerDocumentDto.cs

8 lines
186 B
C#
Raw Normal View History

2025-05-16 17:19:40 -03:00
namespace Domain.Dtos
{
public class QuoteCustomerDocumentDto
{
public string DocumentType { get; set; } = "";
public string Number { get; set; } = "";
}
}