using System.Threading.Tasks;
namespace MediaBrowser.Controller.Connect
{
public interface IConnectManager
{
///
/// Gets the wan API address.
///
/// The wan API address.
string WanApiAddress { get; }
///
/// Links the user.
///
/// The user identifier.
/// The connect username.
/// Task.
Task LinkUser(string userId, string connectUsername);
///
/// Removes the link.
///
/// The user identifier.
/// Task.
Task RemoveLink(string userId);
}
}