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

12 lines
339 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Editor;
public struct RelatedInformation
{
public int EndColumn { get; set; }
public int EndLineNumber { get; set; }
public string Message { get; set; }
public string Resource { get; set; }
public int StartColumn { get; set; }
public int StartLineNumber { get; set; }
}