1
0
Files

10 lines
143 B
C#
Raw Permalink Normal View History

2021-08-19 16:35:32 +07:00
namespace LOC.Website.Common
{
public enum TransactionResponse
{
Success,
InsufficientFunds,
Failed
}
}