mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 21:16:48 +00:00
docs: update XML comments for Essentials Core
This commit is contained in:
parent
0764685c51
commit
f88bb13367
260 changed files with 7018 additions and 1318 deletions
|
|
@ -13,6 +13,9 @@ namespace PepperDash.Essentials.Core
|
|||
/// </summary>
|
||||
public class SerialFeedback : Feedback
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the SerialValue
|
||||
/// </summary>
|
||||
public override string SerialValue { get { return _SerialValue; } }
|
||||
string _SerialValue;
|
||||
|
||||
|
|
@ -25,11 +28,18 @@ namespace PepperDash.Essentials.Core
|
|||
|
||||
List<StringInputSig> LinkedInputSigs = new List<StringInputSig>();
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
[Obsolete("use constructor with Key parameter. This constructor will be removed in a future version")]
|
||||
public SerialFeedback()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Constructor with Key parameter
|
||||
/// </summary>
|
||||
/// <param name="key">Key to find this Feedback</param>
|
||||
public SerialFeedback(string key)
|
||||
: base(key)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue