ReactivePages.cs 420 B

12345678910
  1. // https://github.com/microsoft/microsoft-ui-xaml/issues/931
  2. namespace NatTypeTester.Views;
  3. internal abstract class MainReactivePage : ReactivePage<MainWindowViewModel> { }
  4. internal abstract class SettingReactivePage : ReactivePage<SettingViewModel> { }
  5. internal abstract class RFC5780ReactivePage : ReactivePage<RFC5780ViewModel> { }
  6. internal abstract class RFC3489ReactivePage : ReactivePage<RFC3489ViewModel> { }