mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 13:44:38 +00:00
33 lines
556 B
C#
33 lines
556 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public enum MessageBoxType
|
|
{
|
|
/// <summary>
|
|
/// The none
|
|
/// </summary>
|
|
none,
|
|
|
|
/// <summary>
|
|
/// The information
|
|
/// </summary>
|
|
info,
|
|
|
|
/// <summary>
|
|
/// The error
|
|
/// </summary>
|
|
error,
|
|
|
|
/// <summary>
|
|
/// The question
|
|
/// </summary>
|
|
question,
|
|
|
|
/// <summary>
|
|
/// The warning
|
|
/// </summary>
|
|
warning
|
|
}
|
|
} |