19 lines
248 B
C#
19 lines
248 B
C#
|
|
|
|||
|
|
namespace YiLiao.Main
|
|||
|
|
{
|
|||
|
|
public class LanguageData
|
|||
|
|
{
|
|||
|
|
//UID
|
|||
|
|
public int id;
|
|||
|
|
//中文
|
|||
|
|
public string Chinese;
|
|||
|
|
//英文
|
|||
|
|
public string English;
|
|||
|
|
//日语
|
|||
|
|
public string Japanese;
|
|||
|
|
//法语
|
|||
|
|
public string French;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|