phronCare/Domain/Dtos/Sales/SalesDocumentDeliveryNoteItemSelectionDto.cs

9 lines
211 B
C#
Raw Normal View History

namespace Domain.Dtos.Sales
{
public class SalesDocumentDeliveryNoteItemSelectionDto
{
public int DeliveryNoteDetailId { get; set; }
public decimal SelectedQuantity { get; set; }
}
}