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 { /// /// Gets or sets the local master database file. /// public String LocalMasterDBFile { get; set; } /// /// Gets or sets the local slave database file. /// public String LocalSlaveDBFile { get; set; } /// /// Gets or sets the remote SQLite file. /// public String RemoteSQLiteFile { get; set; } } }