bloxstrap/Bloxstrap/UI/Elements/Settings/Pages/BloxstrapPage.xaml.cs
2024-10-01 11:46:02 +01:00

22 lines
486 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Bloxstrap.UI.ViewModels.Settings;
namespace Bloxstrap.UI.Elements.Settings.Pages
{
/// <summary>
/// Interaction logic for BloxstrapPage.xaml
/// </summary>
public partial class BloxstrapPage
{
public BloxstrapPage()
{
DataContext = new BloxstrapViewModel();
InitializeComponent();
}
}
}