using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Monaco.Editor { /// /// https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.imarkerdata.html /// public interface IMarkerData : IRange { [JsonProperty("code")] string Code { get; } [JsonProperty("message")] string Message { get; } [JsonProperty("severity")] Severity Severity { get; } [JsonProperty("source")] string Source { get; } } }