Files
PyroFetes/PyroFetes/DTO/Price/Request/PatchPriceSellingPriceDto.cs
2025-10-09 19:00:55 +01:00

7 lines
163 B
C#

namespace PyroFetes.DTO.Price.Request;
public class PatchPriceSellingPriceDto
{
public int Id { get; set; }
public decimal SellingPrice { get; set; }
}