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

14 lines
334 B
C#
Raw Normal View History

2011-01-22 12:38:30 +00:00
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; }
}
}