10 lines
137 B
C#
10 lines
137 B
C#
namespace RobotNet.WebApp.Scripts.Monaco;
|
|
|
|
public enum MarkerSeverity
|
|
{
|
|
Hint = 1,
|
|
Info = 2,
|
|
Warning = 4,
|
|
Error = 8,
|
|
}
|