初始化CRICS
This commit is contained in:
25
Domain/Language.cs
Normal file
25
Domain/Language.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Domain
|
||||
{
|
||||
public enum Language
|
||||
{
|
||||
/// <summary>
|
||||
/// 中文
|
||||
/// </summary>
|
||||
CN = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 英文
|
||||
/// </summary>
|
||||
EN = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 台湾繁体
|
||||
/// </summary>
|
||||
ZH_TW = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user