tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
JwtType.cs
Go to the documentation of this file.
1using System;
2
4{
8 public sealed class JwtType : StringScalarType
9 {
13 public JwtType()
14 : base("Jwt")
15 {
16 Description = "Represents an encoded JSON Web Token";
17 SpecifiedBy = new Uri("https://datatracker.ietf.org/doc/html/rfc7519");
18 }
19 }
20}
A StringScalarType for encoded JSON Web Tokens.
Definition JwtType.cs:9
JwtType()
Initializes a new instance of the JwtType class.
Definition JwtType.cs:13
A ScalarType<TRuntimeType, TLiteral> for specialized string types.