using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Scripting.IDE.Notifications { public class ProgressNotificationHandler : IDisposable { private Action _disposeAction; public ProgressNotificationHandler(Action disposeAction) { _disposeAction = disposeAction; } public void Dispose() { _disposeAction?.Invoke(); } } }
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;

namespace Tango.MachineStudio.Synchronization
{
    public class SynchronizationModuleSettings : SettingsBase
    {
        /// <summary>
        /// Gets or sets the local master database file.
        /// </summary>
        public String LocalMasterDBFile { get; set; }

        /// <summary>
        /// Gets or sets the local slave database file.
        /// </summary>
        public String LocalSlaveDBFile { get; set; }

        /// <summary>
        /// Gets or sets the remote SQLite file.
        /// </summary>
        public String RemoteSQLiteFile { get; set; }
    }
}