10 lines
143 B
C#
10 lines
143 B
C#
|
namespace LOC.Website.Common
|
|||
|
{
|
|||
|
public enum TransactionResponse
|
|||
|
{
|
|||
|
Success,
|
|||
|
InsufficientFunds,
|
|||
|
Failed
|
|||
|
}
|
|||
|
}
|