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