Files
Nitrox/Nitrox.Launcher/Views/Abstract/RoutableViewBase.cs
2025-07-06 00:23:46 +02:00

8 lines
226 B
C#

using Avalonia.Controls;
using Nitrox.Launcher.ViewModels.Abstract;
namespace Nitrox.Launcher.Views.Abstract;
public abstract class RoutableViewBase<TViewModel> : UserControl
where TViewModel : RoutableViewModelBase;