2020-06-01 01:59:40 +02:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ElectronNET.API.Entities
|
2017-10-14 00:06:58 +02:00
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2020-06-01 01:59:40 +02:00
|
|
|
|
/// Defines the DockBounceType enumeration.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2017-10-14 00:06:58 +02:00
|
|
|
|
public enum DockBounceType
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2020-06-01 01:59:40 +02:00
|
|
|
|
/// Dock icon will bounce until either the application becomes active or the request is canceled.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2020-06-01 01:59:40 +02:00
|
|
|
|
[Description("critical")]
|
|
|
|
|
|
Critical,
|
2017-10-24 21:43:27 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-01 01:59:40 +02:00
|
|
|
|
/// The dock icon will bounce for one second.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2020-06-01 01:59:40 +02:00
|
|
|
|
[Description("informational")]
|
|
|
|
|
|
Informational
|
2017-10-14 00:06:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|