using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Configuration;
namespace SuperSocket.SocketBase.Config
{
///
/// Type provider configuration
///
public class TypeProvider : ConfigurationElement, ITypeProvider
{
///
/// Gets the name.
///
[ConfigurationProperty("name", IsRequired = true)]
public string Name
{
get { return this["name"] as string; }
}
///
/// Gets the type.
///
[ConfigurationProperty("type", IsRequired = true)]
public string Type
{
get { return this["type"] as string; }
}
}
}