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

15 lines
370 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 IsForSale { get; set; }
public bool IsForPurchae { get; set; }
}
}