Exemplo n.º 1
0
 public State(
     string text,
     Prompts.State prompts,
     CurrencyRates.State currencyRates)
 {
     Text          = text;
     Prompts       = prompts;
     CurrencyRates = currencyRates;
 }
Exemplo n.º 2
0
 public State()
 {
     Text          = "Text displayed by app.";
     Prompts       = new Prompts.State();
     CurrencyRates = new CurrencyRates.State();
 }