10 lines
249 B
C#
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; }
|
|
}
|