This commit is contained in:
mmrbnjd
2025-06-29 15:29:51 +03:30
parent 279940198a
commit 86de5d3e39
13 changed files with 292 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hushian.Application.Models
{
public class JwtSettings
{
public string Key { get; set; }
public string Issuer { get; set; }
public string Audience { get; set; }
public int DurationInMinutes { get; set; }
}
}