using System.Collections.Generic; namespace PepperDash.Essentials.WebSocketServer { /// /// Represents a ServerTokenSecrets /// public class ServerTokenSecrets { /// /// Gets or sets the GrantCode /// public string GrantCode { get; set; } /// /// Gets or sets the Tokens for this server /// public Dictionary Tokens { get; set; } /// /// Initialize a new instance of the class with the provided grant code /// /// The grant code for this server public ServerTokenSecrets(string grantCode) { GrantCode = grantCode; Tokens = new Dictionary(); } } }