mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-23 02:51:26 -07:00
17 lines
368 B
C#
17 lines
368 B
C#
using Bloxstrap.UI.ViewModels.About;
|
|
|
|
namespace Bloxstrap.UI.Elements.About.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for SupportersPage.xaml
|
|
/// </summary>
|
|
public partial class SupportersPage
|
|
{
|
|
public SupportersPage()
|
|
{
|
|
DataContext = new SupportersViewModel();
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|