SettingViewModel.cs 420 B

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