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

27 lines
351 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.

namespace CsharpHttpHelper.Item
{
/// <summary>
/// 图片对象 Copyrighthttp://www.httphelper.com/
/// </summary>
public class ImgItem
{
/// <summary>
/// 图片网址
/// </summary>
public string Src
{
get;
set;
}
/// <summary>
/// 图片标签Html
/// </summary>
public string Html
{
get;
set;
}
}
}