mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 02:35:00 +00:00
docs: complete XML documentation for all projects with inheritdoc tags
Co-authored-by: andrew-welker <1765622+andrew-welker@users.noreply.github.com>
This commit is contained in:
@@ -6,9 +6,18 @@ using Crestron.SimplSharp;
|
||||
|
||||
namespace PepperDash.Essentials.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a FeedbackEventArgs
|
||||
/// </summary>
|
||||
public class FeedbackEventArgs : EventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the BoolValue
|
||||
/// </summary>
|
||||
public bool BoolValue { get; private set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the IntValue
|
||||
/// </summary>
|
||||
public int IntValue { get; private set; }
|
||||
public ushort UShortValue
|
||||
{
|
||||
@@ -17,7 +26,13 @@ namespace PepperDash.Essentials.Core
|
||||
return (ushort)IntValue;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets or sets the StringValue
|
||||
/// </summary>
|
||||
public string StringValue { get; private set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the Type
|
||||
/// </summary>
|
||||
public eFeedbackEventType Type { get; private set; }
|
||||
|
||||
public FeedbackEventArgs(bool value)
|
||||
@@ -39,6 +54,9 @@ namespace PepperDash.Essentials.Core
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enumeration of eFeedbackEventType values
|
||||
/// </summary>
|
||||
public enum eFeedbackEventType
|
||||
{
|
||||
TypeBool,
|
||||
|
||||
Reference in New Issue
Block a user