mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
ElectronNET.API: Move API code to subfolder
This commit is contained in:
25
src/ElectronNET.API/API/Entities/FileIconOptions.cs
Normal file
25
src/ElectronNET.API/API/Entities/FileIconOptions.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class FileIconOptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the size.
|
||||
/// </summary>
|
||||
/// <value>
|
||||
/// The size.
|
||||
/// </value>
|
||||
public string Size { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="FileIconOptions"/> class.
|
||||
/// </summary>
|
||||
/// <param name="fileIconSize">Size of the file icon.</param>
|
||||
public FileIconOptions(FileIconSize fileIconSize)
|
||||
{
|
||||
Size = fileIconSize.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user