23 lines
413 B
C#
23 lines
413 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Navigation;
|
|
using WolfOfWallStreet.Models;
|
|
using WolfOfWallStreet.ViewModels;
|
|
|
|
namespace WolfOfWallStreet.Views
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MainPage
|
|
/// </summary>
|
|
public partial class MainPage : UserControl
|
|
{
|
|
public MainPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
}
|
|
}
|