aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Synchronization/DiffAction.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/DiffAction.cs')
-rw-r--r--Software/Visual_Studio/Tango.Synchronization/DiffAction.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Synchronization/DiffAction.cs b/Software/Visual_Studio/Tango.Synchronization/DiffAction.cs
new file mode 100644
index 000000000..2395d819c
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Synchronization/DiffAction.cs
@@ -0,0 +1,40 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Synchronization
+{
+ /// <summary>
+ /// Represents the type of <see cref="Diff"/>.
+ /// </summary>
+ public enum DiffAction
+ {
+ /// <summary>
+ /// Add table to slave
+ /// </summary>
+ AddTableToSlave,
+ /// <summary>
+ /// Add column to slave
+ /// </summary>
+ AddColumnToSlave,
+ /// <summary>
+ /// Add row to slave
+ /// </summary>
+ AddRowToSlave,
+ /// <summary>
+ /// Add row to master
+ /// </summary>
+ AddRowToMaster,
+ /// <summary>
+ /// Update row in slave
+ /// </summary>
+ UpdateRowInSlave,
+ /// <summary>
+ /// Update row in master
+ /// </summary>
+ UpdateRowInMaster,
+ }
+}