1400f42989
Working on Cashier Checkout
15 lines
378 B
C#
15 lines
378 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using FluentNHibernate.Mapping;
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public class InventoryModifier
|
|
{
|
|
public virtual int InventoryModifierID { get; set; }
|
|
public virtual Inventory Inventory { get; set; }
|
|
public virtual Modifier Modifier { get; set; }
|
|
}
|
|
}
|