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

17 lines
441 B
C#
Raw Normal View History

2018-08-24 10:41:33 +00:00
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; }
}
}