aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Synchronization/DiffAction.cs
blob: 2395d819c129a0ef45ef32be709369c218328a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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,
    }
}