using System; using System.Collections.Generic; using System.Reflection; namespace NETCoreSyncServer { internal class SyncService { public List Types { get; set; } = new List(); public Dictionary TableInfos { get; set; } = new Dictionary(); public SyncEvent? SyncEvent { get; set; } } internal class TableInfo { public SyncTableAttribute SyncTable { get; set; } = null!; public PropertyInfo PropertyInfoID { get; set; } = null!; public PropertyInfo PropertyInfoSyncID { get; set; } = null!; public PropertyInfo PropertyInfoKnowledgeID { get; set; } = null!; public PropertyInfo PropertyInfoTimeStamp { get; set; } = null!; public PropertyInfo PropertyInfoDeleted { get; set; } = null!; } }