blob: da0f68aacd41fb6829bd596458e2066791c9ef0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.AzureUtils.Environment
{
public class RollbackEnvironmentConfiguration
{
public bool RollbackMachineStudio { get; set; }
public bool RollbackPPC { get; set; }
}
}
|