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,12 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ElectronNET.API.Entities
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
public class ResizeOptions
{
/// <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>