Add XML comments

This commit is contained in:
ThrDev
2020-05-06 19:14:34 -04:00
parent fa51cdd72c
commit b87d7f9899
9 changed files with 90 additions and 31 deletions

View File

@@ -1,13 +1,23 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ElectronNET.API.Entities
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
public class CreateFromBitmapOptions
{
/// <summary>
/// Gets or sets the width
/// </summary>
public int? Width { get; set; }
/// <summary>
/// Gets or sets the height
/// </summary>
public int? Height { get; set; }
/// <summary>
/// Gets or sets the scalefactor
/// </summary>
public float ScaleFactor { get; set; } = 1.0f;
}
}