using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PPC.Common; namespace Tango.PPC.Synchronization.ViewModels { /// /// Represents the main view VM and entry point for . /// /// public class MainViewVM : PPCViewModel { /// /// Called when the application has been started /// public override void OnApplicationStarted() { //Start initializing here rather then in the constructor. } } }