0172fc4e01
Added Nc Option in settlement Merged Vouchers and SaleVoucher table. Need to update the Sql Schema
13 lines
279 B
C#
13 lines
279 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; }
|
|
}
|
|
}
|