2026-06-24 11:22:55 +08:00
|
|
|
namespace ChillConnect
|
|
|
|
|
{
|
|
|
|
|
public class RedeemCodeCtrl : BaseCtrl
|
|
|
|
|
{
|
|
|
|
|
public static RedeemCodeCtrl Instance { get; private set; }
|
|
|
|
|
|
|
|
|
|
private RedeemCodeModel model;
|
|
|
|
|
|
|
|
|
|
protected override void OnInit()
|
|
|
|
|
{
|
|
|
|
|
Instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDispose()
|
|
|
|
|
{
|
|
|
|
|
Instance = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|