using System;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
///
/// 输出对象模型
///
[Serializable]
public class CertificationOutput
{
///
/// Id
///
public long Id { get; set; }
///
/// 用户姓名
///
public string Name { get; set; }
///
/// 证件号
///
public string IdCard { get; set; }
///
/// 身份证正面照片
///
public string PositivePhoto { get; set; }
///
/// 身份证反面照片
///
public string ReversePhoto { get; set; }
///
/// 状态
///
public int State { get; set; }
}
}