2using System.Collections.Generic;
5using System.Threading.Tasks;
6using CommunityToolkit.Mvvm.Input;
13 private string infoTitle =
"";
15 public string InfoTitle
17 get => this.infoTitle;
20 if (value == this.infoTitle)
return;
21 this.infoTitle = value;
22 this.OnPropertyChanged();
26 private string infoText =
"";
28 public string InfoText
33 if (value == this.infoText)
return;
34 this.infoText = value;
35 this.OnPropertyChanged();
41 this.InfoTitle = infoTitle;
42 this.InfoText = infoText;
Base class that references services in the app.
static IUiService UiService
Service serializing and managing UI-related tasks.