Quasar/Server/Core/Commands/CommandHandler.cs

18 lines
556 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace xServer.Core.Commands
2014-07-08 12:58:53 +00:00
{
/* THIS PARTIAL CLASS SHOULD CONTAIN VARIABLES NECESSARY FOR VARIOUS COMMANDS (if needed). */
public static partial class CommandHandler
{
public static Dictionary<int, string> CanceledDownloads = new Dictionary<int, string>();
public static Dictionary<int, string> RenamedFiles = new Dictionary<int, string>();
private const string DELIMITER = "$E$";
2015-07-14 21:18:48 +00:00
public enum UserStatus
{
Idle,
Active
}
}
}