phronCare/Domain/Dtos/Sales/SalesDocumentDeliveryNoteItemSelectionDto.cs
leandro 1a2478d0c7
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 22m41s
feat(sales): support delivery note item selection for partial billing close #76
2026-06-12 00:54:43 -03:00

9 lines
211 B
C#

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