using System; using System.Collections.Generic; using System.Linq; using System.Text; using SuperSocket.SocketBase.Protocol; namespace SuperSocket.SocketBase.Command { /// /// A command type for whose request info type is StringRequestInfo /// /// The type of the app session. public abstract class StringCommandBase : CommandBase where TAppSession : IAppSession, IAppSession, new() { } /// /// A command type for whose request info type is StringRequestInfo /// public abstract class StringCommandBase : StringCommandBase { } }