include the missing xml code documentations

This commit is contained in:
Gregor Biswanger
2017-10-24 21:43:27 +02:00
parent cca50abefb
commit 7699773b61
75 changed files with 964 additions and 32 deletions

View File

@@ -1,11 +1,33 @@
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
public enum MessageBoxType
{
/// <summary>
/// The none
/// </summary>
none,
/// <summary>
/// The information
/// </summary>
info,
/// <summary>
/// The error
/// </summary>
error,
/// <summary>
/// The question
/// </summary>
question,
/// <summary>
/// The warning
/// </summary>
warning
}
}