using System.IO; namespace JWTService { public interface IJWTServiceConfig { public JwtConfig? JwtConfig { get; set; } } public interface IJwtConfig { public string? Secret { get; set; } public int? Expires { get; set; } } public class JwtConfig : IJwtConfig { public string? Secret { get; set; } public int? Expires { get; set; } } }