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