mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-15 13:45:09 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
38
src/ElectronNET.API/API/Entities/Data.cs
Normal file
38
src/ElectronNET.API/API/Entities/Data.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class Data
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the text.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The text.
|
||||
/// </value>
|
||||
public string Text { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the HTML.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The HTML.
|
||||
/// </value>
|
||||
public string Html { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the RTF.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The RTF.
|
||||
/// </value>
|
||||
public string Rtf { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The title of the url at text.
|
||||
/// </summary>
|
||||
public string Bookmark { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user