31 lines
883 B
C#
31 lines
883 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MediaContentList Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MediaContentList : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 业务标识。 1:身份证正面照片; 2:身份证背面照片; 3:行驶证正页正面照片; 4:行驶证副页正面照片; 5:车头照片
|
||
/// </summary>
|
||
[XmlElement("biz_type")]
|
||
public long BizType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 资料base64值
|
||
/// </summary>
|
||
[XmlElement("content")]
|
||
public string Content { get; set; }
|
||
|
||
/// <summary>
|
||
/// 媒体类型。 1:jpg图片; 2:png图片; 3:mp4视频
|
||
/// </summary>
|
||
[XmlElement("media_type")]
|
||
public long MediaType { get; set; }
|
||
}
|
||
}
|