//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using System;
namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.DisasterRecovery
{
[Flags]
public enum TaskExecutionModeFlag
{
None = 0x00,
///
/// Execute task
///
Execute = 0x01,
///
/// Script task
///
Script = 0x02,
///
/// Execute and script task
/// Needed for tasks that will show the script when execution completes
///
ExecuteAndScript = Execute | Script
}
}