mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 21:36:33 +00:00
9 lines
257 B
C#
9 lines
257 B
C#
namespace Azaion.Common.Configs;
|
|
|
|
public class JwtConfig
|
|
{
|
|
public string Issuer { get; set; } = null!;
|
|
public string Audience { get; set; } = null!;
|
|
public string Secret { get; set; } = null!;
|
|
public double TokenLifetimeHours { get; set; }
|
|
} |