phronCare/Domain/Dtos/Sales/SalesDocumentSummaryDto.cs

25 lines
988 B
C#
Raw Normal View History

namespace Domain.Dtos.Sales
{
public class SalesDocumentSummaryDto
{
public int Id { get; set; }
public string? InternalDocumentNumber { get; set; }
public int DocumentType { get; set; }
public int Status { get; set; }
public int? QuoteId { get; set; }
public int CustomerId { get; set; }
public string CustomerName { get; set; } = string.Empty;
public int BillToCustomerId { get; set; }
public string BillToCustomerName { get; set; } = string.Empty;
public DateTime? IssueDate { get; set; }
public string Currency { get; set; } = string.Empty;
public decimal NetAmount { get; set; }
public decimal TaxAmount { get; set; }
public decimal TotalAmount { get; set; }
public DateTime? PeriodFrom { get; set; }
public DateTime? PeriodTo { get; set; }
public DateTime Createdat { get; set; }
public DateTime? Modifiedat { get; set; }
}
}