Files
sqltoolsservice/test/Microsoft.SqlTools.ServiceLayer.IntegrationTests/TaskServices/RequstParamStub.cs
Leila Lali 39dedd88e0 generic way to support scriptable operations (#438)
* implemented a generic way to support scriptable operations
2017-08-18 16:12:00 -07:00

16 lines
477 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlTools.ServiceLayer.TaskServices;
using Microsoft.SqlTools.ServiceLayer.Utility;
namespace Microsoft.SqlTools.ServiceLayer.IntegrationTests.TaskServices
{
public class RequstParamStub : IScriptableRequestParams
{
public TaskExecutionMode TaskExecutionMode { get; set; }
public string OwnerUri { get; set; }
public string DatabaseName { get; set; }
}
}