14 lines
334 B
C#
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; }
|
|
}
|
|
}
|