19 lines
427 B
C#
19 lines
427 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserCertifyIdentifyFileQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayUserCertifyIdentifyFileQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 文件的地址
|
|
/// </summary>
|
|
[XmlElement("file_url")]
|
|
public string FileUrl { get; set; }
|
|
}
|
|
}
|