2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
|
|
|
{
|
2013-11-28 10:39:33 +00:00
|
|
|
|
public class ProductGroupBO
|
2010-03-02 17:56:21 +00:00
|
|
|
|
{
|
2013-11-28 10:39:33 +00:00
|
|
|
|
public Guid ProductGroupID { get; set; }
|
2010-03-02 17:56:21 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public decimal DiscountLimit { get; set; }
|
|
|
|
|
public bool IsForSale { get; set; }
|
|
|
|
|
public bool IsForPurchae { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|