RobotNet/RobotNet.WebApp/Scripts/Monaco/Languages/CompletionItemLabel.cs
2025-10-15 15:15:53 +07:00

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; }
}