SettingViewModel.cs 411 B

1234567891011121314
  1. using JetBrains.Annotations;
  2. using NatTypeTester.Models;
  3. using ReactiveUI;
  4. namespace NatTypeTester.ViewModels;
  5. [UsedImplicitly]
  6. public class SettingViewModel : ViewModelBase, IRoutableViewModel
  7. {
  8. public string UrlPathSegment => @"Settings";
  9. public IScreen HostScreen => LazyServiceProvider.LazyGetRequiredService<IScreen>();
  10. public Config Config => LazyServiceProvider.LazyGetRequiredService<Config>();
  11. }