NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntOcrVehicleplateIdentifyM...

25 lines
604 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AntOcrVehicleplateIdentifyModel Data Structure.
/// </summary>
[Serializable]
public class AntOcrVehicleplateIdentifyModel : AopObject
{
/// <summary>
/// 图片地址
/// </summary>
[XmlElement("image")]
public string Image { get; set; }
/// <summary>
/// 图片存储类型url图片url地址aftsIdafts文件服务Id
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}