2
0
mirror of synced 2025-01-28 09:14:58 +00:00

18 lines
391 B
C#
Raw Normal View History

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