using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Settings.MachineStudioSettings { /// /// Represents the machine studio synchronization module settings. /// public class SynchronizationModule { /// /// 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; } } }