using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.Navigation { public class NavigationToEventArgs : EventArgs { public FSEViewModel FromVM { get; set; } public FSEViewModel ToVM { get; set; } } }