Files
components/LiteCharms.Features.MidrandBooks/Products/Models/CreateProductPrice.cs
T

11 lines
224 B
C#

namespace LiteCharms.Features.MidrandBooks.Products.Models;
public class CreateProductPrice
{
public long ProductId { get; set; }
public decimal Amount { get; set; }
public decimal Discount { get; set; }
}