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

10 lines
294 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Languages;
public struct SignatureInformation
{
public int? ActiveParameter { get; set; }
public MarkdownString? Documentation { get; set; }
public string Label { get; set; }
public ParameterInformation[] Parameters { get; set; }
}