0172fc4e01
Added Nc Option in settlement Merged Vouchers and SaleVoucher table. Need to update the Sql Schema
18 lines
433 B
C#
18 lines
433 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
|
|
public class CustomerBO
|
|
{
|
|
public Guid CustomerID { get; set; }
|
|
public int Code { get; set; }
|
|
public string Name { get; set; }
|
|
public string Address { get; set; }
|
|
public bool Important { get; set; }
|
|
public string Phone { get; set; }
|
|
public string Remarks { get; set; }
|
|
}
|
|
}
|