18 lines
302 B
C#
18 lines
302 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public enum SettleOption
|
|
{
|
|
Unsettled = 1,
|
|
Cash = 2,
|
|
CreditCard = 3,
|
|
NoCharge = 4,
|
|
BillToCompany = 5,
|
|
Staff = 6
|
|
}
|
|
}
|