using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BusinessLogic.Tools { public class JwtOptions { public string SecretKey { get; set; } = null!; public short ExpiresHours { get; set; } } }