using System; using System.Collections.Generic; namespace Tanshu.Accounts.Entities { public class Modifier { public Guid ModifierID { get; set; } public string Name { get; set; } public bool ShowInBill { get; set; } public decimal Price { get; set; } public List ProductGroupModifiers { get; set; } public List InventoryModifiers { get; set; } } }