creating purchaseproduct's endpoint and fix error in dto

This commit is contained in:
2025-10-16 22:53:14 +01:00
parent 791eff9256
commit e4e6c1c3f7
11 changed files with 55 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
namespace PyroFetes.DTO.PurchaseOrder.Request;
public class PatchPurchaseOrderPurchaseConditionsDto
{
public int Id { get; set; }
public string? PurchaseConditions { get; set; }
}

View File

@@ -0,0 +1,7 @@
namespace PyroFetes.DTO.PurchaseOrder.Response;
public class GetPurchaseOrderDto
{
public int Id { get; set; }
public string? PurchaseConditions { get; set; }
}