From b9ff3e2b899b22090b5d206c1f95189aa7fd7ecb Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Wed, 16 May 2018 18:22:47 +0300 Subject: New Settings Library. --- .../MachineStudioSettings/SynchronizationModule.cs | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/SynchronizationModule.cs (limited to 'Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/SynchronizationModule.cs') diff --git a/Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/SynchronizationModule.cs b/Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/SynchronizationModule.cs new file mode 100644 index 000000000..c487fdd42 --- /dev/null +++ b/Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/SynchronizationModule.cs @@ -0,0 +1,29 @@ +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; } + } +} -- cgit v1.3.1