8 lines
228 B
C#
8 lines
228 B
C#
namespace RobotNet.WebApp.Scripts.Monaco.Documentation;
|
|
|
|
public class DocumentationItem(string name, string documentation)
|
|
{
|
|
public string Name { get; } = name;
|
|
public string Documentation { get; } = documentation;
|
|
}
|