aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Settings/DataBase.cs
blob: 1a504d0ac9d563107ba6206ab6c7e6315c0e8e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Settings
{
    [Serializable]
    public class DataBase
    {
        public String SQLServerAddress { get; set; }

        public DataBase()
        {
            SQLServerAddress = "localhost\\SQLEXPRESS";
        }
    }
}