forked from sanchezvem/PyroFetes
8 lines
210 B
C#
8 lines
210 B
C#
namespace PyroFetes.DTO.Price.Request;
|
|
|
|
public class PatchPriceSellingPriceDto
|
|
{
|
|
public int ProductId { get; set; }
|
|
public int SupplierId { get; set; }
|
|
public decimal SellingPrice { get; set; }
|
|
} |