public State( string text, Prompts.State prompts, CurrencyRates.State currencyRates) { Text = text; Prompts = prompts; CurrencyRates = currencyRates; }
public State() { Text = "Text displayed by app."; Prompts = new Prompts.State(); CurrencyRates = new CurrencyRates.State(); }