using System.Runtime.Versioning;
namespace ElectronNET.API.Entities
{
///
/// Mode for BrowserWindow/BaseWindow setProgressBar on Windows.
///
/// Up-to-date with Electron API 39.2
[SupportedOSPlatform("Windows")]
public enum ProgressBarMode
{
///
/// The none
///
none,
///
/// The normal
///
normal,
///
/// The indeterminate
///
indeterminate,
///
/// The error
///
error,
///
/// The paused
///
paused
}
}