9 lines
219 B
C#
9 lines
219 B
C#
namespace RobotNet.WebApp.Scripts.Monaco.Languages;
|
|
|
|
public struct CompletionItemLabel
|
|
{
|
|
public string? Description { get; set; }
|
|
public string? Detail { get; set; }
|
|
public string Label { get; set; }
|
|
}
|