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

16 lines
363 B
C#

using Tanshu.Accounts.Contracts;
namespace Tanshu.Accounts.Entities
{
public enum VoucherType
{
[Display("Regular Bill", true, 2)]
Regular = 1,
[Display("No Charge", true, 3)]
NoCharge = 2,
[Display("Take Away", true, 2)]
TakeAway = 3,
[Display("Staff Bill", true, 4)]
Staff = 4,
}
}