diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-27 21:51:38 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-27 21:51:38 +0200 |
| commit | df2f9b27b12356d6e92c64a72049f0fc4e6b86c0 (patch) | |
| tree | 049ced63087ef30986cc998f8546071e5894e37e /Software/Visual_Studio/Tango.Synchronization/DiffAction.cs | |
| parent | 7060dc80c707fc0441ff69fe4f899107cb3f6fc1 (diff) | |
| download | Tango-df2f9b27b12356d6e92c64a72049f0fc4e6b86c0.tar.gz Tango-df2f9b27b12356d6e92c64a72049f0fc4e6b86c0.zip | |
Started Remote <=> Local Synchronization... /;
Diffstat (limited to 'Software/Visual_Studio/Tango.Synchronization/DiffAction.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Synchronization/DiffAction.cs | 40 |
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, + } +} |
