using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Grant.Framework
{
public class GrantInfo
{
///
/// 软件标题
///
public string Title { get; set; }
///
/// 软件主图
///
public string Pict { get; set; }
///
/// 付款链接
///
public string PayURL { get; set; }
public Image GetImage()
{
if (!string.IsNullOrEmpty(Pict))
{
return CsharpHttpHelper.HttpExtend.ToImage(Pict);
}
return null;
}
}
}