phronCare/Domain/Dtos/Sales/DeliveryNoteCreateRequest.cs

13 lines
472 B
C#
Raw Normal View History

namespace Domain.Dtos.Sales
{
public class DeliveryNoteCreateRequest
{
public string DeliveryNoteNumber { get; set; } = string.Empty;
public int? QuoteId { get; set; }
public DateTime IssueDate { get; set; }
public int CustomerId { get; set; }
public string? Observations { get; set; }
public string? ExtraInfoJson { get; set; }
public List<DeliveryNoteCreateItemRequest> Items { get; set; } = new();
}
}