9 lines
258 B
C#
9 lines
258 B
C#
namespace RobotNet10.ScriptEditor.Helpers.Monaco.Languages;
|
|
|
|
public class SignatureHelp
|
|
{
|
|
public int ActiveParameter { get; set; }
|
|
public int ActiveSignature { get; set; }
|
|
public SignatureInformation[] Signatures { get; set; } = [];
|
|
}
|