mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-19 06:34:56 +00:00
25 lines
520 B
C#
25 lines
520 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
namespace PepperDash.Essentials.WebSocketServer
|
|
{
|
|
/// <summary>
|
|
/// Represents a ServerTokenSecrets
|
|
/// </summary>
|
|
public class ServerTokenSecrets
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the GrantCode
|
|
/// </summary>
|
|
public string GrantCode { get; set; }
|
|
|
|
public Dictionary<string, JoinToken> Tokens { get; set; }
|
|
|
|
public ServerTokenSecrets(string grantCode)
|
|
{
|
|
GrantCode = grantCode;
|
|
Tokens = new Dictionary<string, JoinToken>();
|
|
}
|
|
}
|
|
}
|