narsil/Tanshu.Accounts.Contracts/Data Contracts/Modifier.cs

17 lines
454 B
C#
Raw Permalink Normal View History

2018-08-24 10:41:33 +00:00
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; }
}
}