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

15 lines
370 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public class ProductGroupBO
2010-03-02 17:56:21 +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; }
}
}