aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Core/DB/DbCredentials.cs
blob: 5962a9cc64c845a3ac395e29ea3e05a6bf56269b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Core.DB
{
    public class DbCredentials
    {
        public String UserName { get; set; }
        public String Password { get; set; }
    }
}