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

10 lines
249 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Editor;
public struct ModelContentChange
{
public Range Range { get; set; }
public int RangeLength { get; set; }
public int RangeOffset { get; set; }
public string Text { get; set; }
}