using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Settings; namespace Tango.Core { public class CoreSettings : SettingsBase { /// /// Gets or sets the default SQL data base source. /// public static DataSource DefaultDataSource { get; set; } /// /// Gets or sets the SQL data source. /// public DataSource DataSource { get; set; } /// /// Initializes the class. /// static CoreSettings() { DefaultDataSource = new DataSource(); } /// /// Initializes a new instance of the class. /// public CoreSettings() { DataSource = DefaultDataSource; } } }