phronCare/Domain/Dtos/Sales/SalesDocumentDraftPreviewDto.cs

10 lines
322 B
C#
Raw Normal View History

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