using System.Configuration;
namespace Sodao.FastSocket.Server.Config
{
///
/// socket server config.
///
public class SocketServerConfig : ConfigurationSection
{
///
/// 服务器集合。
///
[ConfigurationProperty("servers", IsRequired = true)]
public ServerCollection Servers
{
get { return this["servers"] as ServerCollection; }
}
}
}