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();
|
||
|
|
}
|
||
|
|
}
|