blob: 5370567017cd40fb0cd425b6e1599c3b85bec46b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.AzureUtils.Environment
{
public class UpgradeEnvironmentConfiguration
{
public bool SynchronizeDatabaseSchema { get; set; } = true;
public bool SynchronizeDatabaseData { get; set; } = true;
public bool CopyMachineStudioStorageBlobs { get; set; } = true;
public bool UpgradeMachineStudioDatabaseVersion { get; set; } = true;
public bool CopyPPCStorageBlobs { get; set; } = true;
public bool UpgradePPCDatabaseVersion { get; set; } = true;
public bool CopyMachineServiceFiles { get; set; } = true;
}
}
|