using CryptoProvider;
using DataProviders;
using JWTService;
namespace WeatherForecast {
///
///
///
public class Configuration : IDataProvidersConfig, IJWTServiceConfig {
///
///
///
public JwtConfig? JwtConfig { get; set; }
///
///
///
public AesKey? JwtTokenEncryption { get; set; }
///
///
///
public Database? Database { get; set; }
}
}