All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 26m7s
10 lines
322 B
C#
10 lines
322 B
C#
namespace Domain.Dtos.Sales
|
|
{
|
|
public class SalesDocumentDraftPreviewDto
|
|
{
|
|
public SalesDocumentDto Document { get; set; } = new();
|
|
public List<DeliveryNoteSummaryDto> OriginDeliveryNotes { get; set; } = new();
|
|
public SalesDocumentDraftValidationDto Validation { get; set; } = new();
|
|
}
|
|
}
|