You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
856 B
28 lines
856 B
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace AksWebBrowser.Common
|
||
|
{
|
||
|
public class IDCardModel
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
public string Sex { get; set; }
|
||
|
public string Nation_Code { get; set; }
|
||
|
public string Nation { get; set; }
|
||
|
public string Id { get; set; }
|
||
|
public string BirthDay { get; set; }
|
||
|
public string Addr { get; set; }
|
||
|
public string Regorg { get; set; }
|
||
|
public string StartDate { get; set; }
|
||
|
public string EndDate { get; set; }
|
||
|
public string Reserv { get; set; }
|
||
|
public string WltFileName { get; set; }
|
||
|
public string BmpFilePath { get; set; }
|
||
|
public string Status { get; set; }
|
||
|
public string ImageBase64 { get; set; }
|
||
|
}
|
||
|
}
|