You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
988 B
35 lines
988 B
namespace Operation
|
|
{
|
|
public static class MenuName
|
|
{
|
|
public const string SYSTEM_MANAGER = "系统管理";
|
|
|
|
public const string SERVER_MANAGER = "服务器管理";
|
|
|
|
public const string ALLIANCE_MANAGER = "工会管理";
|
|
|
|
public const string OPERATION_MANAGER = "运营工具";
|
|
|
|
public const string BAN_MANAGER = "封号管理";
|
|
|
|
public const string CDK_MANAGER = "礼包CDK管理";
|
|
public const string PLAYER_MANAGER = "玩家信息";
|
|
}
|
|
|
|
public static class MenuIcon
|
|
{
|
|
public const string SYSTEM_MANAGER = "icon-set-fill";
|
|
|
|
public const string SERVER = "icon-template-1";
|
|
public const string TOOLS = "icon-gift";
|
|
|
|
public const string GROUP = "icon-group";
|
|
|
|
public const string BAN = "icon-close";
|
|
|
|
public const string CDK = "icon-gift";
|
|
|
|
public const string PLAYER = "icon-friends";
|
|
}
|
|
|
|
}
|