wip: update XML comments

This commit is contained in:
Erik Meyer
2026-01-28 16:13:11 -05:00
parent ca77506108
commit e0ee5b0474
14 changed files with 330 additions and 101 deletions

View File

@@ -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;