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 INotifyApplicationStarted
{
///
/// Called when the application has started (once before user login).
///
void OnApplicationStarted(IFSEApplicationManager applicationManager);
}
}