All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 9m37s
close #68
15 lines
526 B
C#
15 lines
526 B
C#
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; }
|
|
}
|
|
}
|