26 lines
398 B
C#
26 lines
398 B
C#
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
|
|
}
|
|
}
|