14 lines
433 B
C#
14 lines
433 B
C#
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public class Customer
|
|
{
|
|
public virtual int CustomerID { get; set; }
|
|
public virtual int Code { get; set; }
|
|
public virtual string Name { get; set; }
|
|
public virtual string Address { get; set; }
|
|
public virtual bool Important { get; set; }
|
|
public virtual string Phone { get; set; }
|
|
public virtual string Remarks { get; set; }
|
|
}
|
|
}
|