- add: ContentView think

This commit is contained in:
2025-01-11 20:39:58 +03:00
parent 77a1134823
commit 6d46e02d6f
10 changed files with 388 additions and 42 deletions

View File

@@ -9,6 +9,7 @@ public class HubService
private readonly RestService _restService;
public Action<HubServerChangedEventArgs>? HubServerChangedEventArgs;
public Action? HubServerLoaded;
private bool _isUpdating = false;
public HubService(ConfigurationService configurationService, RestService restService)
@@ -35,6 +36,7 @@ public class HubService
}
_isUpdating = false;
HubServerLoaded?.Invoke();
}
}