using System.Collections.Generic;
namespace PepperDash.Essentials.WebSocketServer
{
///
/// Represents a ServerTokenSecrets
///
public class ServerTokenSecrets
{
///
/// Gets or sets the GrantCode
///
public string GrantCode { get; set; }
public Dictionary Tokens { get; set; }
public ServerTokenSecrets(string grantCode)
{
GrantCode = grantCode;
Tokens = new Dictionary();
}
}
}