19 lines
293 B
C#
19 lines
293 B
C#
|
|
|
||
|
|
using System.Linq;
|
||
|
|
namespace BallKingdomCrush
|
||
|
|
{
|
||
|
|
public class LanguageViewModel : BaseModel
|
||
|
|
{
|
||
|
|
#region 生命周期
|
||
|
|
|
||
|
|
protected override void OnInit()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected override void OnDispose()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|