mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 05:34:48 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
55
src/ElectronNET.API/API/Entities/OnTopLevel.cs
Normal file
55
src/ElectronNET.API/API/Entities/OnTopLevel.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public enum OnTopLevel
|
||||
{
|
||||
/// <summary>
|
||||
/// The normal
|
||||
/// </summary>
|
||||
normal,
|
||||
|
||||
/// <summary>
|
||||
/// The floating
|
||||
/// </summary>
|
||||
floating,
|
||||
|
||||
/// <summary>
|
||||
/// The torn off menu
|
||||
/// </summary>
|
||||
[Description("torn-off-menu")]
|
||||
tornOffMenu,
|
||||
|
||||
/// <summary>
|
||||
/// The modal panel
|
||||
/// </summary>
|
||||
[Description("modal-panel")]
|
||||
modalPanel,
|
||||
|
||||
/// <summary>
|
||||
/// The main menu
|
||||
/// </summary>
|
||||
[Description("main-menu")]
|
||||
mainMenu,
|
||||
|
||||
/// <summary>
|
||||
/// The status
|
||||
/// </summary>
|
||||
status,
|
||||
|
||||
/// <summary>
|
||||
/// The pop up menu
|
||||
/// </summary>
|
||||
[Description("pop-up-menu")]
|
||||
popUpMenu,
|
||||
|
||||
/// <summary>
|
||||
/// The screen saver
|
||||
/// </summary>
|
||||
[Description("screen-saver")]
|
||||
screenSaver
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user