mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-23 02:51:26 -07:00
22 lines
486 B
C#
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();
|
|
}
|
|
}
|
|
}
|