Files
pyrofetes-backend/PyroFetes/DTO/Price/Request/CreatePriceDto.cs
T
2026-05-24 17:22:03 +01:00

8 lines
200 B
C#

namespace PyroFetes.DTO.Price.Request;
public class CreatePriceDto
{
public decimal SellingPrice { get; set; }
public int? SupplierId { get; set; }
public int ProductId { get; set; }
}