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 CopyFSEStorageBlobs { get; set; } = true; public bool UpgradeFSEDatabaseVersion { get; set; } = true; public bool CopyMachineServiceFiles { get; set; } = true; } }