using CsharpHttpHelper.Enum; namespace CsharpHttpHelper.Item { /// /// A连接对象 Copyright:http://www.httphelper.com/ /// public class AItem { /// /// 链接地址 /// public string Href { get; set; } /// /// 链接文本 /// public string Text { get; set; } /// /// 链接的图片,如果是文本链接则为空 /// public ImgItem Img { get; set; } /// /// 整个连接Html /// public string Html { get; set; } /// /// A链接的类型 /// public AType Type { get; set; } } }