From ed39ba5002a04f40c3a2329cf9fda3c98f3ec2b1 Mon Sep 17 00:00:00 2001 From: Riza Semih Koca Date: Thu, 18 Jan 2024 23:05:30 +0300 Subject: [PATCH] ExpenseApplication/Infrastructure/Token/JwtConfig.cs --- ExpenseApplication/Infrastructure/Token/JwtConfig.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ExpenseApplication/Infrastructure/Token/JwtConfig.cs b/ExpenseApplication/Infrastructure/Token/JwtConfig.cs index e6343fd..7bf1bc1 100644 --- a/ExpenseApplication/Infrastructure/Token/JwtConfig.cs +++ b/ExpenseApplication/Infrastructure/Token/JwtConfig.cs @@ -2,5 +2,8 @@ namespace Infrastructure.Token; public class JwtConfig { - + public string Secret { get; set; } + public string Issuer { get; set; } + public string Audience { get; set; } + public int AccessTokenExpiration { get; set; } } \ No newline at end of file