7 lines
195 B
C#
7 lines
195 B
C#
|
|
namespace NetinaShop.Domain.Entities.Discounts;
|
|||
|
|
|
|||
|
|
public class ProductDiscount : Discount
|
|||
|
|
{
|
|||
|
|
public Guid ProductId { get; internal set; }
|
|||
|
|
public Product? Product { get; internal set; }
|
|||
|
|
}
|