using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PMR.Power; using Tango.PPC.Common.Notifications; namespace Tango.PPC.UI.AppBarItems { public class PowerUpAppBarItem : AppBarItem { private StartPowerUpResponse _status; public StartPowerUpResponse Status { get { return _status; } set { _status = value; RaisePropertyChangedAuto(); } } /// /// Gets or sets the view type. /// public override Type ViewType { get { return typeof(PowerUpAppBarItemView); } } } }