mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-18 05:35:34 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
38
src/ElectronNET.API/API/Entities/DefaultFontFamily.cs
Normal file
38
src/ElectronNET.API/API/Entities/DefaultFontFamily.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class DefaultFontFamily
|
||||
{
|
||||
/// <summary>
|
||||
/// Defaults to Times New Roman.
|
||||
/// </summary>
|
||||
public string Standard { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Times New Roman.
|
||||
/// </summary>
|
||||
public string Serif { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Arial.
|
||||
/// </summary>
|
||||
public string SansSerif { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Courier New.
|
||||
/// </summary>
|
||||
public string Monospace { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Script.
|
||||
/// </summary>
|
||||
public string Cursive { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defaults to Impact.
|
||||
/// </summary>
|
||||
public string Fantasy { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user