You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Connect
|
|
|
|
|
{
|
|
|
|
|
public interface IConnectManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the wan API address.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The wan API address.</value>
|
|
|
|
|
string WanApiAddress { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Links the user.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user identifier.</param>
|
|
|
|
|
/// <param name="connectUsername">The connect username.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task<UserLinkResult> LinkUser(string userId, string connectUsername);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes the link.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user identifier.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task RemoveLink(string userId);
|
|
|
|
|
}
|
|
|
|
|
}
|