public EditorContext(string id, string currentValue, MonacoInterop monacoInterop)
 {
     Id             = id;
     CurrentValue   = currentValue;
     _monacoInterop = monacoInterop;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CodeEditor"/> class.
 /// </summary>
 /// <param name="id">The editor ID.</param>
 /// <param name="interop">The shared monaco interop wrapper.</param>
 public DiffEditorContext(string id, MonacoInterop monacoInterop)
 {
     Id             = id;
     _monacoInterop = monacoInterop;
 }