using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Synchronization
{
///
/// Represents the available types of actions.
///
public enum DiffAction
{
///
/// Add table to slave
///
AddTableToSlave,
///
/// Add column to slave
///
AddColumnToSlave,
///
/// Add row to slave
///
AddRowToSlave,
///
/// Add row to master
///
AddRowToMaster,
///
/// Update row in slave
///
UpdateRowInSlave,
///
/// Update row in master
///
UpdateRowInMaster,
///
/// Replace table data in slave
///
ReplaceTableDataInSlave,
///
/// Replace table data in master
///
ReplaceTableDataInMaster,
}
}