phronCare/Domain/Dtos/Sales/DeliveryNoteSummaryDto.cs

19 lines
690 B
C#
Raw Normal View History

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