7 lines
187 B
C#
7 lines
187 B
C#
public class JwtSettings
|
|
{
|
|
public string Key { get; set; }
|
|
public string Issuer { get; set; }
|
|
public string Audience { get; set; }
|
|
public int ExpireMinutes { get; set; }
|
|
} |