cs-codex-dist-tests/Tools/MarketInsights/AppState.cs

18 lines
391 B
C#
Raw Normal View History

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
}
}