From d1fa1f1a2e26469a6bbb5b82ab614079beffcb52 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 14 Jan 2018 13:19:03 +0200 Subject: Added code comments for: Synchronization. --- .../Visual_Studio/Tango.Synchronization/SyncConfiguration.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs') diff --git a/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs b/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs index 6082db15b..2262796b9 100644 --- a/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs +++ b/Software/Visual_Studio/Tango.Synchronization/SyncConfiguration.cs @@ -6,9 +6,18 @@ using System.Threading.Tasks; namespace Tango.Synchronization { + /// + /// Represents a table synchronization configuration. + /// public enum SyncConfiguration { + /// + /// Removes all rows in the target DB and inserts all rows from source. + /// OverwriteLocal, + /// + /// Synchronize (Insert, Update) rows by LAST_UPDATED field. + /// Synchronize, } } -- cgit v1.3.1