aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Settings/OLD/SettingsCollection.cs
blob: f72e7064736054ea2c48c06bf858bcb607c69cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
    {
        /// <summary>
        /// Gets or sets the data base settings.
        /// </summary>
        public DataBase DataBase { get; set; }

        /// <summary>
        /// Gets or sets the machine studio settings.
        /// </summary>
        public MachineStudio MachineStudio { get; set; }

        /// <summary>
        /// Gets or sets the stubs UI utility settings.
        /// </summary>
        public StubsUI StubsUI { get; set; }

        /// <summary>
        /// Gets or sets the integration settings.
        /// </summary>
        public Integration Integration { get; set; }

        /// <summary>
        /// Initializes a new instance of the <see cref="SettingsCollection"/> class.
        /// </summary>
        public SettingsCollection()
        {
            DataBase = new DataBase();
            MachineStudio = new MachineStudio();
            StubsUI = new StubsUI();
            Integration = new Integration();
        }
    }
}