17 lines
454 B
C#
17 lines
454 B
C#
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<ProductGroupModifier> ProductGroupModifiers { get; set; }
|
|
public List<InventoryModifier> InventoryModifiers { get; set; }
|
|
}
|
|
}
|