using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices.ComTypes; using System.Security.Cryptography; using System.Security.Policy; using System.Text; using System.Threading.Tasks; using System.Windows.Controls; namespace DataLoader.Model { public class SysMeta { public int id { set; get; } public string name { set; get; } public int dirid { set; get; } public int depid { set; get; } public int verid { set; get; } public string type { set; get; } public double sizes { set; get; } public string cs { set; get; } public string scale { set; get; } public string resolution { set; get; } public DateTime gather { set; get; } public string batch { set; get; } public string descr { set; get; } public int create_user { set; get; } public DateTime create_time { set; get; } public int update_user { set; get; } public DateTime update_time { set; get; } public string geom { set; get; } public string tab { set; get; } public int rows { set; get; } public SysMeta() { } } }