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

10 lines
241 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Languages;
public struct Command
{
public string Id { get; set; }
public string Title { get; set; }
public string? Tooltip { get; set; }
public object[]? Arguments { get; set; }
}