25 lines
428 B
C#
25 lines
428 B
C#
using BingoBrain.Core;
|
|
|
|
namespace BingoBrain
|
|
{
|
|
public class JTodCtrl : BaseCtrl
|
|
{
|
|
public static JTodCtrl Instance { get; private set; }
|
|
|
|
private JTodModel model;
|
|
|
|
#region 生命周期
|
|
|
|
protected override void OnInit()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |