Files
Electron.NET/ElectronNET.API/Entities/CreateFromBufferOptions.cs
2020-05-06 19:05:21 -04:00

9 lines
227 B
C#

namespace ElectronNET.API.Entities
{
public class CreateFromBufferOptions
{
public int? Width { get; set; }
public int? Height { get; set; }
public float ScaleFactor { get; set; } = 1.0f;
}
}