mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-23 15:34:37 +00:00
Implement all functions from the Electron App-API
This commit is contained in:
12
ElectronNET.API/Entities/FileIconOptions.cs
Normal file
12
ElectronNET.API/Entities/FileIconOptions.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
public class FileIconOptions
|
||||
{
|
||||
public string Size { get; private set; }
|
||||
|
||||
public FileIconOptions(FileIconSize fileIconSize)
|
||||
{
|
||||
Size = fileIconSize.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user