using System;
using System.Collections.Generic;
using System.Text;
namespace CB.TVUCenter.View
{
///
/// 彩种服务器分布
///
public class ChartServerInfo
{
public IList Urls { get; set; }
public override string ToString()
{
if (null != Urls && 0 < Urls.Count)
{
var sp = new StringBuilder(2000);
foreach (var item in Urls)
{
sp.AppendFormat("{0}", item);
}
return sp.ToString();
}
return "";
}
}
}