Files
Electron.NET/ElectronNET.API/Entities/ProgressBarOptions.cs
2017-10-16 16:53:35 +02:00

10 lines
279 B
C#

namespace ElectronNET.API.Entities
{
public class ProgressBarOptions
{
/// <summary>
/// Mode for the progress bar. Can be 'none' | 'normal' | 'indeterminate' | 'error' | 'paused'.
/// </summary>
public string Mode { get; set; }
}
}