aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentCreationViewVM.cs
blob: 919e361e11bf9aa7be3e0dfacaf89ef5a9340fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Azure.Management.AppService.Fluent;
using Microsoft.Azure.Management.Fluent;

namespace Tango.AzureUtils.UI.ViewModels
{
    public class EnvironmentCreationViewVM : AzureDashboardViewModel
    {
        public override void OnApplicationReady()
        {
            
        }

        public override void OnAuthenticated(IAzure azure, List<IWebAppBase> apps)
        {
            
        }
    }
}