All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (pull_request) Successful in 22m41s
9 lines
211 B
C#
9 lines
211 B
C#
namespace Domain.Dtos.Sales
|
|
{
|
|
public class SalesDocumentDeliveryNoteItemSelectionDto
|
|
{
|
|
public int DeliveryNoteDetailId { get; set; }
|
|
public decimal SelectedQuantity { get; set; }
|
|
}
|
|
}
|