Creating of all price dto

This commit is contained in:
2025-10-09 19:00:55 +01:00
parent d0f20e08f0
commit 464869e3ca
4 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace PyroFetes.DTO.Price.Request;
public class PatchPriceSellingPriceDto
{
public int Id { get; set; }
public decimal SellingPrice { get; set; }
}