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 PowerOffAppBarItem : AppBarItem { private StartPowerDownResponse _status; public StartPowerDownResponse Status { get { return _status; } set { _status = value; RaisePropertyChangedAuto(); } } /// /// Gets or sets the view type. /// public override Type ViewType { get { return typeof(PowerOffAppBarItemView); } } } }