using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.Navigation { public interface INavigationObjectReceiver { } /// /// Represents an object which supports receiving an object as part of the navigation to it. /// /// public interface INavigationObjectReceiver : INavigationObjectReceiver { /// /// Called when navigation system is going to navigate to this instance with the specified object. /// /// The object. void OnNavigatedToWithObject(T obj); } }