using System.ComponentModel; namespace ElectronNET.API.Entities { /// /// Defines the DockBounceType enumeration. /// public enum DockBounceType { /// /// Dock icon will bounce until either the application becomes active or the request is canceled. /// [Description("critical")] Critical, /// /// The dock icon will bounce for one second. /// [Description("informational")] Informational } }