using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperSocket.SocketBase.Command { /// /// Command update action enum /// public enum CommandUpdateAction { /// /// Add command /// Add, /// /// Remove command /// Remove, /// /// Update command /// Update } /// /// Command update information /// /// public class CommandUpdateInfo { /// /// Gets or sets the update action. /// /// /// The update action. /// public CommandUpdateAction UpdateAction { get; set; } /// /// Gets or sets the target command. /// /// /// The command. /// public T Command { get; set; } } }