8 lines
172 B
C#
8 lines
172 B
C#
|
|
namespace PruebaGentle.Core.Config;
|
||
|
|
|
||
|
|
public class JwtSettings
|
||
|
|
{
|
||
|
|
public string Secret { get; set; } = string.Empty;
|
||
|
|
public int ExpirationHours { get; set; } = 24;
|
||
|
|
}
|