using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Settings { /// /// Represents global database settings. /// [Serializable] public class DataBase { /// /// Gets or sets the SQL server address. /// public String SQLServerAddress { get; set; } /// /// Initializes a new instance of the class. /// public DataBase() { SQLServerAddress = "twine01\\SQLTWINE"; } } }