inotify/Inotify/Data/Models/System/JwtInfo.cs
2021-03-24 23:09:35 +08:00

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; }
}
}