public SettingsGetResponse()
 {
     App     = new Common.App();
     Format  = new Format();
     Peloton = new SettingsPelotonGetResponse();
     Garmin  = new SettingsGarminGetResponse();
 }
Exemplo n.º 2
0
 public static void Main()
 {
     Common.App app = new Common.App();
     app.InitializeComponent();
     app.Run();
 }
Exemplo n.º 3
0
 public Task <Common.App> SettingsAppPostAsync(Common.App appSettings)
 {
     return($"{_apiUrl}/api/settings/app"
            .PostJsonAsync(appSettings)
            .ReceiveJson <Common.App>());
 }