mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 08:25:20 +01:00
30 lines
376 B
C#
30 lines
376 B
C#
namespace MoleMole
|
|
{
|
|
public class PayResult
|
|
{
|
|
public enum PayRetcode
|
|
{
|
|
SUCCESS = 0,
|
|
CONFIRMING = 1,
|
|
CANCELED = 2,
|
|
FAILED = 3
|
|
}
|
|
|
|
public PayRetcode payRetCode;
|
|
|
|
public PayResult()
|
|
{
|
|
}
|
|
|
|
public PayResult(PayRetcode payRetCode)
|
|
{
|
|
this.payRetCode = payRetCode;
|
|
}
|
|
|
|
public virtual string GetResultShowText()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
}
|
|
}
|