mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 05:34:47 +00:00
14 lines
330 B
C#
14 lines
330 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
public class Data
|
|
{
|
|
public string Text { get; set; }
|
|
public string Html { get; set; }
|
|
public string Rtf { get; set; }
|
|
|
|
/// <summary>
|
|
/// The title of the url at text.
|
|
/// </summary>
|
|
public string Bookmark { get; set; }
|
|
}
|
|
} |