27 lines
858 B
C#
27 lines
858 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Drawing;
|
|||
|
|
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Selfhelp
|
|||
|
|
{
|
|||
|
|
public class IDCardInfo
|
|||
|
|
{
|
|||
|
|
public string reserved { get; internal set; }
|
|||
|
|
|
|||
|
|
public string Address { get; internal set; }
|
|||
|
|
public string Born { get; internal set; }
|
|||
|
|
public string FPInfo { get; internal set; }
|
|||
|
|
public string GrantDept { get; internal set; }
|
|||
|
|
public string IDCardNo { get; internal set; }
|
|||
|
|
public string Name { get; internal set; }
|
|||
|
|
public string Nation { get; internal set; }
|
|||
|
|
public Image Photo { get; internal set; }
|
|||
|
|
public string PhotoFileName { get; internal set; }
|
|||
|
|
public string Sex { get; internal set; }
|
|||
|
|
public string UserLifeBegin { get; internal set; }
|
|||
|
|
public string UserLifeEnd { get; internal set; }
|
|||
|
|
}
|
|||
|
|
}
|