19 строки
521 B
C#
19 строки
521 B
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.DotNet.Try.Protocol
|
|
{
|
|
public class SignatureHelpItem
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Label { get; set; }
|
|
|
|
public MarkdownString Documentation { get; set; }
|
|
|
|
public IEnumerable<SignatureHelpParameter> Parameters { get; set; }
|
|
}
|
|
}
|