ref: project structure
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace mws.backend.dotnet.infrastructure.Authentication;
|
||||
|
||||
public class JwtOptions
|
||||
{
|
||||
public string Secret { get; set; } = string.Empty;
|
||||
public string Issuer { get; set; } = "Mws";
|
||||
public string Audience { get; set; } = "Mws.Clients";
|
||||
public TimeSpan Expiration { get; set; } = TimeSpan.FromHours(12);
|
||||
}
|
||||
Reference in New Issue
Block a user