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

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();
}
}