aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Azure/Tango.AzureUtils/AzureUtilsCredentials.cs
blob: a820954ac43f5b6ec300e9cf8a9714cf23a5314b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.AzureUtils
{
    public class AzureUtilsCredentials
    {
        public String ClientID { get; set; }
        public String ClientSecret { get; set; }
        public String TenantID { get; set; }
        public String SubscriptionID { get; set; }
    }
}