creating endpoints from PurchaseOrder

This commit is contained in:
2025-10-16 23:28:27 +01:00
parent 8bd7fadabc
commit 4f12911263
6 changed files with 157 additions and 17 deletions

View File

@@ -1,7 +1,10 @@
namespace PyroFetes.DTO.PurchaseOrder.Response;
using PyroFetes.DTO.PurchaseProduct.Response;
namespace PyroFetes.DTO.PurchaseOrder.Response;
public class GetPurchaseOrderDto
{
public int Id { get; set; }
public string? PurchaseConditions { get; set; }
public List<GetPurchaseProductDto>? GetPurchaseProductDto { get; set; }
}