17 lines
441 B
C#
17 lines
441 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Entities
|
|||
|
{
|
|||
|
public class Customer
|
|||
|
{
|
|||
|
public Guid CustomerID { 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; }
|
|||
|
public List<Voucher> Vouchers { get; set; }
|
|||
|
}
|
|||
|
}
|