using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Common;
using static Tango.PPC.UI.ViewModels.MachineUpdateViewVM;
namespace Tango.PPC.UI.ViewsContracts
{
public interface IMachineUpdateView : IPPCView
{
///
/// Navigates to the specified machine setup view.
///
/// The view.
Task NavigateTo(MachineUpdateView view);
}
}