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

17 lines
567 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Editor;
public struct MarkerData
{
public string Code { get; set; }
public int EndColumn { get; set; }
public int EndLineNumber { get; set; }
public string Message { get; set; }
public int ModelVersionId { get; set; }
public RelatedInformation[] RelatedInformation { get; set; }
public MarkerSeverity Severity { get; set; }
public string Source { get; set; }
public int StartColumn { get; set; }
public int StartLineNumber { get; set; }
public MarkerData[] Tags { get; set; }
}