You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

MainWindowViewModel.cs 604 B

12345678910111213141516171819202122232425
  1. using ReactiveUI;
  2. using ReactiveUI.Fody.Helpers;
  3. using Shadowsocks.WPF.Views;
  4. namespace Shadowsocks.WPF.ViewModels
  5. {
  6. public class MainWindowViewModel : ReactiveObject
  7. {
  8. public MainWindowViewModel()
  9. {
  10. GetDashboardView = new();
  11. GetServersView = new();
  12. GetRoutingView = new();
  13. GetSettingsView = new();
  14. }
  15. public DashboardView GetDashboardView { get; }
  16. public ServersView GetServersView { get; }
  17. public RoutingView GetRoutingView { get; }
  18. public SettingsView GetSettingsView { get; }
  19. }
  20. }