using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;
using Tango.PPC.Common;
namespace Tango.PPC.UI.ViewModels
{
public class NoPermissionsViewVM : PPCViewModel
{
public RelayCommand RestartCommand { get; set; }
public NoPermissionsViewVM()
{
RestartCommand = new RelayCommand(Restart);
}
private void Restart()
{
ApplicationManager.Restart();
}
public override void OnApplicationStarted()
{
}
}
}