7 lines
199 B
C#
7 lines
199 B
C#
|
|
namespace NetinaShop.Domain.Entities.Discounts;
|
|||
|
|
|
|||
|
|
public class CategoryDiscount : Discount
|
|||
|
|
{
|
|||
|
|
public Guid CategoryId { get; internal set; }
|
|||
|
|
public Category? Category { get; internal set; }
|
|||
|
|
}
|