添加项目文件。
This commit is contained in:
7
Entities/Configuration/ApiConfiguration.cs
Normal file
7
Entities/Configuration/ApiConfiguration.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Entities.Configuration
|
||||
{
|
||||
public class ApiConfiguration
|
||||
{
|
||||
public string? BaseAddress { get; set; } /*= "http://localhost:5099";*/
|
||||
}
|
||||
}
|
10
Entities/Configuration/JwtConfiguration.cs
Normal file
10
Entities/Configuration/JwtConfiguration.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Entities.Configuration
|
||||
{
|
||||
public class JwtConfiguration
|
||||
{
|
||||
public string? SecurityKey { get; set; }
|
||||
public string? ValidIssuer { get; set; }
|
||||
public string? ValidAudience { get; set; }
|
||||
public int ExpiryInMinutes { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user