12 lines
379 B
C#
12 lines
379 B
C#
namespace Domain.Dtos.Sales
|
|
{
|
|
public class DeliveryNoteCreateItemRequest
|
|
{
|
|
public byte OriginType { get; set; }
|
|
public int? OriginId { get; set; }
|
|
public int? QuoteDetailId { get; set; }
|
|
public string Description { get; set; } = string.Empty;
|
|
public decimal Quantity { get; set; }
|
|
public string? Notes { get; set; }
|
|
}
|
|
} |