using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperSocket.SocketBase.Config { /// /// TypeProviderConfig /// [Serializable] public class TypeProviderConfig : ITypeProvider { /// /// Gets the name. /// public string Name { get; set; } /// /// Gets the type. /// public string Type { get; set; } } }