namespace Domain.Dtos.Sales { public class SalesDocumentDraftPreviewDto { public SalesDocumentDto Document { get; set; } = new(); public List OriginDeliveryNotes { get; set; } = new(); public SalesDocumentDraftValidationDto Validation { get; set; } = new(); } }