mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
22 lines
563 B
C#
22 lines
563 B
C#
using System.ComponentModel;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Defines the DockBounceType enumeration.
|
|
/// </summary>
|
|
public enum DockBounceType
|
|
{
|
|
/// <summary>
|
|
/// Dock icon will bounce until either the application becomes active or the request is canceled.
|
|
/// </summary>
|
|
[Description("critical")]
|
|
Critical,
|
|
|
|
/// <summary>
|
|
/// The dock icon will bounce for one second.
|
|
/// </summary>
|
|
[Description("informational")]
|
|
Informational
|
|
}
|
|
} |