19 lines
382 B
C#
19 lines
382 B
C#
namespace LiteCharms.Features.MidrandBooks.Products.Models;
|
|
|
|
public class ProductPrice
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public long ProductId { get; set; }
|
|
|
|
public decimal Amount { get; set; }
|
|
|
|
public decimal Discount { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|