mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 19:24:53 +00:00
wip: update XML comments
This commit is contained in:
@@ -11,11 +11,27 @@ namespace PepperDash.Essentials.Core
|
||||
/// </summary>
|
||||
public class CrestronSecret : ISecret
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the Provider
|
||||
/// </summary>
|
||||
public ISecretProvider Provider { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Key
|
||||
/// </summary>
|
||||
public string Key { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Value
|
||||
/// </summary>
|
||||
public object Value { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Constructor for CrestronSecret
|
||||
/// </summary>
|
||||
/// <param name="key">key for the secret</param>
|
||||
/// <param name="value">value of the secret</param>
|
||||
/// <param name="provider">provider of the secret</param>
|
||||
public CrestronSecret(string key, string value, ISecretProvider provider)
|
||||
{
|
||||
Key = key;
|
||||
|
||||
Reference in New Issue
Block a user