mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 15:03:12 +00:00
18 lines
391 B
C#
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();
|
|
}
|
|
}
|