27 lines
551 B
C#
27 lines
551 B
C#
using Prism.Commands;
|
|
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
using RestSharp;
|
|
using WolfOfWallStreet.Extensions;
|
|
using WolfOfWallStreet.Models;
|
|
using MessageBox = HandyControl.Controls.MessageBox;
|
|
|
|
namespace WolfOfWallStreet.ViewModels
|
|
{
|
|
public class MainPageViewModel : ViewModelBase
|
|
{
|
|
public MainPageViewModel()
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|