narsil/Tanshu.Accounts.Contracts/Data Contracts/ProductGroupBO.cs
2011-01-22 18:08:30 +05:30

14 lines
334 B
C#

using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public class ProductGroupBO
{
public Guid ProductGroupID { get; set; }
public string Name { get; set; }
public decimal DiscountLimit { get; set; }
public bool IsModifierCompulsory { get; set; }
}
}