blob: 7811a73bbd6f0b05659baa2a6e8077ce154f0379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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; }
public String PPCVersionTag { get; set; }
}
}
|