mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
17 lines
323 B
C#
17 lines
323 B
C#
using Bloxstrap.ViewModels;
|
|
|
|
namespace Bloxstrap.Views.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for ModsPage.xaml
|
|
/// </summary>
|
|
public partial class ModsPage
|
|
{
|
|
public ModsPage()
|
|
{
|
|
DataContext = new ModsViewModel();
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|