namespace ElectronNET.API.Entities { /// /// /// public class Data { /// /// Gets or sets the text. /// /// /// The text. /// public string Text { get; set; } /// /// Gets or sets the HTML. /// /// /// The HTML. /// public string Html { get; set; } /// /// Gets or sets the RTF. /// /// /// The RTF. /// public string Rtf { get; set; } /// /// The title of the url at text. /// public string Bookmark { get; set; } } }