Files

19 lines
303 B
C#
Raw Permalink Normal View History

2026-06-02 10:26:44 +08:00
using System.Linq;
namespace ZooMatch
2026-06-02 10:26:44 +08:00
{
public class LanguageViewModel : BaseModel
{
#region 生命周期
protected override void OnInit()
{
}
protected override void OnDispose()
{
}
#endregion
}
}