mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-22 08:48:32 +00:00
14 lines
280 B
C#
14 lines
280 B
C#
namespace MarketInsights
|
|
{
|
|
public class AppState
|
|
{
|
|
public AppState(Configuration config)
|
|
{
|
|
Config = config;
|
|
}
|
|
|
|
public MarketOverview MarketOverview { get; set; } = new ();
|
|
public Configuration Config { get; }
|
|
}
|
|
}
|