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