13 lines
252 B
C#
13 lines
252 B
C#
using Nitrox.Launcher.ViewModels;
|
|
using Nitrox.Launcher.Views.Abstract;
|
|
|
|
namespace Nitrox.Launcher.Views;
|
|
|
|
public partial class UpdatesView : RoutableViewBase<UpdatesViewModel>
|
|
{
|
|
public UpdatesView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|