narsil/Tanshu.Accounts.Contracts/Data Contracts/CustomerBO.cs

18 lines
433 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
2010-03-02 17:56:21 +00:00
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; }
}
}