12 lines
314 B
C#
12 lines
314 B
C#
|
using System;
|
||
|
|
||
|
namespace Tanshu.Accounts.Entities
|
||
|
{
|
||
|
public class ProductGroupModifier
|
||
|
{
|
||
|
public Guid ProductGroupModifierID { get; set; }
|
||
|
public ProductGroup ProductGroup { get; set; }
|
||
|
public Modifier Modifier { get; set; }
|
||
|
public bool ShowAutomatically { get; set; }
|
||
|
}
|
||
|
}
|