mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 08:46:34 +00:00
8 lines
197 B
C#
8 lines
197 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; }
|
|
} |