using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.MachineStudio.Common { public interface IStudioModuleViewVM { /// /// Called when the module . /// void OnNavigatedTo(); /// /// Called when [navigated from]. /// void OnNavigatedFrom(); /// /// Called when [shutting down]. /// void OnShuttingDown(); /// /// Called when the application is shutting down. /// /// Task OnShutdownRequest(); } }