using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.FSE.Common.FSEApplication;
namespace Tango.FSE.Common
{
///
/// Represents an object that supports receiving application started/ready from the application manager.
///
public interface INotifyApplicationReady
{
///
/// Called when is ready and user is logged-in. (happens every time a user logs-in)
///
void OnApplicationReady(IFSEApplicationManager applicationManager);
}
}