mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 10:56:34 +00:00
add authorization
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
namespace Azaion.Common.Configs;
|
||||
|
||||
public class Constants
|
||||
{
|
||||
public const string HARDWARE_ID = nameof(HARDWARE_ID);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Azaion.Common.Configs;
|
||||
|
||||
public class JwtConfig
|
||||
{
|
||||
public string Issuer { get; set; } = null!;
|
||||
public string Audience { get; set; } = null!;
|
||||
public string Secret { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user