using System.Runtime.Versioning;
namespace ElectronNET.API.Entities
{
///
///
///
/// Up-to-date with Electron API 39.2
public enum FileIconSize
{
///
/// small - 16x16 (per app.getFileIcon size mapping).
///
small,
///
/// normal - 32x32 (per app.getFileIcon size mapping).
///
normal,
///
/// large - 48x48 on Linux, 32x32 on Windows, unsupported on macOS (per app.getFileIcon size mapping).
///
[SupportedOSPlatform("Linux")]
[SupportedOSPlatform("Windows")]
large
}
}