phronCare/Domain/Dtos/Sales/SalesDocumentCreateRequest.cs

26 lines
1.1 KiB
C#
Raw Normal View History

namespace Domain.Dtos.Sales
{
public class SalesDocumentCreateRequest
{
public int? FormseriesId { get; set; }
public int DocumentType { get; set; }
public int? FiscalVoucherType { get; set; }
public string? FiscalVoucherLetter { get; set; }
public int? QuoteId { get; set; }
public int CustomerId { get; set; }
public int BillToCustomerId { get; set; }
public DateTime? IssueDate { get; set; }
public string Currency { get; set; } = string.Empty;
public decimal ExchangeRate { get; set; }
public string? AssociatedDocumentType { get; set; }
public string? AssociatedDocumentNumber { get; set; }
public DateTime? AssociatedDocumentDate { get; set; }
public string? Observations { get; set; }
public string? ExtraInfoJson { get; set; }
public DateTime? PeriodFrom { get; set; }
public DateTime? PeriodTo { get; set; }
public List<SalesDocumentCreateDetailRequest> Details { get; set; } = new();
public List<SalesDocumentCreateCoverageRequest> Coverage { get; set; } = new();
}
}