using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoLicenseOcrIdentifyModel Data Structure.
///
[Serializable]
public class AlipayEcoLicenseOcrIdentifyModel : AopObject
{
///
/// 图片字节byte[]经过base64处理的字符串
///
[XmlElement("image")]
public string Image { get; set; }
}
}