namespace FlowerPower { public class BuyConfirmCtrl : BaseCtrl { public static BuyConfirmCtrl Instance { get; private set; } private BuyConfirmCtrl model; protected override void OnInit() { Instance = this; } protected override void OnDispose() { Instance = null; } } }