16 lines
336 B
C#
16 lines
336 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Serwer.Infrastructure.Settings
|
|||
|
{
|
|||
|
public class JwtSettings
|
|||
|
{
|
|||
|
public string Key { get; set; }
|
|||
|
public string Issuer { get; set; }
|
|||
|
public int ExpiryMinutes { get; set; }
|
|||
|
}
|
|||
|
}
|