namespace Domain.Dtos.Sales { public class SalesDocumentDeliveryNoteCandidateDto { public int Id { get; set; } public string DeliveryNoteNumber { get; set; } = string.Empty; public int? QuoteId { get; set; } public string? QuoteNumber { get; set; } public DateTime IssueDate { get; set; } public int CustomerId { get; set; } public string CustomerName { get; set; } = string.Empty; public string Status { get; set; } = string.Empty; public int ItemCount { get; set; } public decimal ApprovedAmount { get; set; } public string? ExtraInfoJson { get; set; } } }