NewGaoKaoApi/PaymentSDK/AliPay/Domain/OpenCertPic.cs

25 lines
615 B
C#
Raw Permalink 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>
/// OpenCertPic Data Structure.
/// </summary>
[Serializable]
public class OpenCertPic : AopObject
{
/// <summary>
/// 图片的base64字符串不需要base64头(data:image/jpeg;base64,)
/// </summary>
[XmlElement("data")]
public string Data { get; set; }
/// <summary>
/// DRIVING_LICENSE_HOME_PAGE:主页; DRIVING_LICENSE_SUB_PAGE:副页;
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}