Add JwtService

This commit is contained in:
2026-08-30 20:09:56 +03:00
parent 90143e180f
commit c70b9b6174
5 changed files with 73 additions and 3 deletions
@@ -0,0 +1,11 @@
namespace AMessanger.Application.Settings;
public class JwtSettings
{
public const string SECTION_NAME = "Jwt";
public string Issuer { get; set; } = null!;
public string Audience { get; set; } = null!;
public int ExpiresMinutes { get; set; }
public string Key { get; set; } = null!;
}