old_flsystem/类库/HttpHelper2.1/Item/AItem.cs

56 lines
714 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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