2
0
mirror of synced 2025-01-14 18:44:29 +00:00
2024-08-21 15:03:20 +02:00

18 lines
391 B
C#

using Logging;
namespace MarketInsights
{
public class AppState
{
public AppState(Configuration config)
{
Config = config;
}
public bool Realtime { get; set; }
public MarketOverview MarketOverview { get; set; } = new();
public Configuration Config { get; }
public ILog Log { get; } = new ConsoleLog();
}
}