Files
Electron.NET/ElectronNET.API/Entities/ProgressBarOptions.cs

14 lines
399 B
C#
Raw Normal View History

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace ElectronNET.API.Entities
2017-10-16 16:53:35 +02:00
{
public class ProgressBarOptions
{
/// <summary>
/// Mode for the progress bar. Can be 'none' | 'normal' | 'indeterminate' | 'error' | 'paused'.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public ProgressBarMode Mode { get; set; }
2017-10-16 16:53:35 +02:00
}
}