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

27 lines
351 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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;
}
}
}