using System; using System.Collections.Generic; namespace Tanshu.Accounts.Entities { public class ProductGroup { public ProductGroup() { Products = new List(); } public virtual Guid ProductGroupID { get; set; } public string Name { get; set; } public decimal DiscountLimit { get; set; } public bool IsModifierCompulsory { get; set; } public bool IsActive { get; set; } public int SortOrder { get; set; } public string GroupType { get; set; } public List Products { get; set; } public List PrintLocations { get; set; } public List ProductGroupModifiers { get; set; } } }