13 lines
201 B
C#
13 lines
201 B
C#
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public enum PaidStatus
|
|||
|
{
|
|||
|
Pending = 1,
|
|||
|
Cash = 2,
|
|||
|
CreditCard = 3,
|
|||
|
Credit = 4,
|
|||
|
Staff = 5,
|
|||
|
Void = 6
|
|||
|
}
|
|||
|
}
|