Creating of price's endpoints

This commit is contained in:
2025-11-06 18:52:18 +01:00
parent 1c898f9144
commit 33719b708e
5 changed files with 158 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
public class PatchPriceSellingPriceDto
{
public int Id { get; set; }
public int ProductId { get; set; }
public int SupplierId { get; set; }
public decimal SellingPrice { get; set; }
}