fix error and add CreatePurchaseOrder.cs

This commit is contained in:
2025-12-13 11:24:01 +01:00
parent 2a42e1010f
commit 35d3e58d86
8 changed files with 88 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
using PyroFetes.DTO.PurchaseProduct.Request;
namespace PyroFetes.DTO.PurchaseOrder.Request;
public class CreatePurchaseOrderDto
{
public string? PurchaseConditions { get; set; }
public List<CreatePurchaseOrderProductDto>? Products { get; set; }
}