22 lines
412 B
C#
22 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Inotify.Data.Models.System
|
|
{
|
|
public class JwtInfo
|
|
{
|
|
public int ClockSkew { get; set; }
|
|
|
|
public string Audience { get; set; }
|
|
|
|
public string Issuer { get; set; }
|
|
|
|
public string IssuerSigningKey { get; set; }
|
|
|
|
public int Expiration { get; set; }
|
|
|
|
}
|
|
}
|