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

8 lines
188 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Languages;
public struct ParameterInformation
{
public string Label { get; set; }
public MarkdownString? Documentation { get; set; }
}