2024-08-21 13:03:20 +00:00
|
|
|
|
using Logging;
|
|
|
|
|
|
|
|
|
|
namespace MarketInsights
|
2024-08-21 11:59:54 +00:00
|
|
|
|
{
|
|
|
|
|
public class AppState
|
|
|
|
|
{
|
|
|
|
|
public AppState(Configuration config)
|
|
|
|
|
{
|
|
|
|
|
Config = config;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-21 13:03:20 +00:00
|
|
|
|
public bool Realtime { get; set; }
|
|
|
|
|
public MarketOverview MarketOverview { get; set; } = new();
|
2024-08-21 11:59:54 +00:00
|
|
|
|
public Configuration Config { get; }
|
2024-08-21 13:03:20 +00:00
|
|
|
|
public ILog Log { get; } = new ConsoleLog();
|
2024-08-21 11:59:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|