13 lines
387 B
C#
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; }
|
|
}
|