8 lines
188 B
C#
8 lines
188 B
C#
namespace RobotNet.WebApp.Scripts.Monaco.Languages;
|
|
|
|
public struct ParameterInformation
|
|
{
|
|
public string Label { get; set; }
|
|
public MarkdownString? Documentation { get; set; }
|
|
}
|