using Newtonsoft.Json; namespace Monaco.Editor { /// /// https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.iwordatposition.html /// public sealed class WordAtPosition : IWordAtPosition { /// /// Column where the word ends. /// [JsonProperty("endColumn")] public uint EndColumn { get; private set; } /// /// Column where the word starts. /// [JsonProperty("startColumn")] public uint StartColumn { get; private set; } /// /// The word. /// [JsonProperty("word")] public string Word { get; private set; } } }