10 lines
241 B
C#
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; }
|
|
}
|