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

9 lines
215 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Editor;
public struct SingleEditOperation
{
public bool? ForceMoveMarkers { get; set; }
public Range Range { get; set; }
public string Text { get; set; }
}