All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 22m41s
15 lines
558 B
C#
15 lines
558 B
C#
namespace Domain.Dtos.Sales
|
|
{
|
|
public class SalesDocumentCreateFromDeliveryNoteItemsRequest
|
|
{
|
|
public List<SalesDocumentDeliveryNoteItemSelectionDto> Items { 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; }
|
|
}
|
|
}
|