namespace ElectronNET.API.Entities { /// /// /// /// Up-to-date with Electron API 39.2 public class FileIconOptions { /// /// The requested icon size string passed to app.getFileIcon: /// "small" (16x16), "normal" (32x32), or "large" (48x48 on Linux, 32x32 on Windows; unsupported on macOS). /// public string Size { get; private set; } /// /// Initializes a new instance of the class. /// /// Size of the file icon. public FileIconOptions(FileIconSize fileIconSize) { Size = fileIconSize.ToString(); } } }