phronCare/Domain/Dtos/Sales/SalesDocumentCreateFromDeliveryNotesRequest.cs

15 lines
526 B
C#
Raw Normal View History

namespace Domain.Dtos.Sales
{
public class SalesDocumentCreateFromDeliveryNotesRequest
{
public List<int> DeliveryNoteIds { get; set; } = new();
public int DocumentType { get; set; } = 1;
public DateTime? IssueDate { get; set; }
public string Currency { get; set; } = "ARS";
public decimal ExchangeRate { get; set; } = 1;
public DateTime? PeriodFrom { get; set; }
public DateTime? PeriodTo { get; set; }
public string? Observations { get; set; }
}
}