namespace Domain.Dtos.Sales { public class DeliveryNoteSummaryDto { 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 string? Observations { get; set; } public int PrintCount { get; set; } public DateTime CreatedAt { get; set; } public DateTime? ModifiedAt { get; set; } } }