//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.ServiceLayer.TaskServices
{
///
/// Task script message
///
public class TaskScript
{
///
/// Status of script
///
public SqlTaskStatus Status { get; set; }
///
/// Script content
///
public string Script { get; set; }
///
/// Error occurred during script
///
public string ErrorMessage { get; set; }
}
}