using System; using System.Collections.Generic; using System.Text; namespace SuperSocket.SocketBase.Config { /// /// TypeProvider's interface /// public interface ITypeProvider { /// /// Gets the name. /// string Name { get; } /// /// Gets the type. /// string Type { get; } } }