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

10 lines
238 B
C#

namespace RobotNet.WebApp.Scripts.Monaco;
public struct Range
{
public int EndColumn { get; set; }
public int EndLineNumber { get; set; }
public int StartColumn { get; set; }
public int StartLineNumber { get; set; }
}