Spaces:
Paused
Paused
| namespace Entities.Config | |
| { | |
| public class JwtSettings | |
| { | |
| public string Key { get; set; } | |
| public string Issuer { get; set; } | |
| public string Audience { get; set; } | |
| public int TokenExpiresHours { get; set; } = 24; | |
| } | |
| } | |