using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Serialization; using Tango.Settings.MachineStudioSettings; namespace Tango.Settings { [Serializable] public class SettingsCollection { /// /// Gets or sets the data base settings. /// public DataBase DataBase { get; set; } /// /// Gets or sets the machine studio settings. /// public MachineStudio MachineStudio { get; set; } /// /// Gets or sets the stubs UI utility settings. /// public StubsUI StubsUI { get; set; } /// /// Gets or sets the integration settings. /// public Integration Integration { get; set; } /// /// Initializes a new instance of the class. /// public SettingsCollection() { DataBase = new DataBase(); MachineStudio = new MachineStudio(); StubsUI = new StubsUI(); Integration = new Integration(); } } }