All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m14s
10 lines
305 B
C#
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();
|
|
}
|
|
} |