mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 09:59:48 -05:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using Microsoft.SqlTools.Hosting.Protocol.Contracts;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.LanguageExtensibility.Contracts
|
|
{
|
|
public class ExternalLanguageUpdateRequestParams
|
|
{
|
|
/// <summary>
|
|
/// Connection uri
|
|
/// </summary>
|
|
public string OwnerUri { get; set; }
|
|
|
|
/// <summary>
|
|
/// Language name
|
|
/// </summary>
|
|
public ExternalLanguage Language { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Response class for external language update
|
|
/// </summary>
|
|
public class ExternalLanguageUpdateResponseParams
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Request class for external language status
|
|
/// </summary>
|
|
public class ExternalLanguageUpdateRequest
|
|
{
|
|
public static readonly
|
|
RequestType<ExternalLanguageUpdateRequestParams, ExternalLanguageUpdateResponseParams> Type =
|
|
RequestType<ExternalLanguageUpdateRequestParams, ExternalLanguageUpdateResponseParams>.Create("languageExtension/update");
|
|
}
|
|
}
|