Added SecretsManager

Added ISecrets

Added ISecretsProvider
This commit is contained in:
Trevor Payne 2021-04-15 13:47:46 -05:00
parent b455e1af21
commit 0a4ff82af0
9 changed files with 438 additions and 19 deletions

View file

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using Newtonsoft.Json;
namespace PepperDash.Essentials.Core
{
public class SecretsPropertiesConfig
{
[JsonProperty("provider")]
public string Provider { get; set; }
[JsonProperty("key")]
public string Key { get; set; }
}
}