18 lines
516 B
C#
18 lines
516 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using FluentNHibernate.Mapping;
|
|
|
|
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; }
|
|
}
|
|
}
|