narsil/Tanshu.Accounts.Contracts/Data Contracts/Customer.cs
2018-08-24 16:11:33 +05:30

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; }
}
}