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

13 lines
387 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Editor;
public struct ModelContentChangedEvent
{
public ModelContentChange[] Changes { get; set; }
public string Eol { get; set; }
public bool IsEolChange { get; set; }
public bool IsFlush { get; set; }
public bool IsRedoing { get; set; }
public bool IsUndoing { get; set; }
public int VersionId { get; set; }
}