- Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSyncService.cs
More file actions
Latest commit
23 lines (21 loc) · 836 Bytes
/
Copy pathSyncService.cs
File metadata and controls
23 lines (21 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Reflection;
namespaceNETCoreSyncServer
{
internalclassSyncService
{
publicList<Type>Types{get;set;}=newList<Type>();
publicDictionary<Type,TableInfo>TableInfos{get;set;}=newDictionary<Type,TableInfo>();
publicSyncEvent?SyncEvent{get;set;}
}
internalclassTableInfo
{
publicSyncTableAttributeSyncTable{get;set;}=null!;
publicPropertyInfoPropertyInfoID{get;set;}=null!;
publicPropertyInfoPropertyInfoSyncID{get;set;}=null!;
publicPropertyInfoPropertyInfoKnowledgeID{get;set;}=null!;
publicPropertyInfoPropertyInfoTimeStamp{get;set;}=null!;
publicPropertyInfoPropertyInfoDeleted{get;set;}=null!;
}
}