diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-09 12:11:16 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-09 12:11:16 -0400 |
| commit | 66624293ac2208020d25456801664d10ddd2450a (patch) | |
| tree | a8369c3cfc2a75e7cd7ffdd0d06080c1b5c530d8 /MediaBrowser.Model/ApiClient/IApiClient.cs | |
| parent | 48265fefa445d2b9e62c4f050fca3da783e6123f (diff) | |
Display client version in the dashboard
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IApiClient.cs')
| -rw-r--r-- | MediaBrowser.Model/ApiClient/IApiClient.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Model/ApiClient/IApiClient.cs b/MediaBrowser.Model/ApiClient/IApiClient.cs index 4ec7b14e1..990f63f84 100644 --- a/MediaBrowser.Model/ApiClient/IApiClient.cs +++ b/MediaBrowser.Model/ApiClient/IApiClient.cs @@ -101,6 +101,12 @@ namespace MediaBrowser.Model.ApiClient Task<UserDto[]> GetUsersAsync(); /// <summary> + /// Gets the public users async. + /// </summary> + /// <returns>Task{UserDto[]}.</returns> + Task<UserDto[]> GetPublicUsersAsync(); + + /// <summary> /// Gets active client sessions. /// </summary> /// <returns>Task{SessionInfoDto[]}.</returns> @@ -359,6 +365,14 @@ namespace MediaBrowser.Model.ApiClient Task SendBrowseCommandAsync(string sessionId, string itemId, string itemName, string itemType, string context); /// <summary> + /// Sends the playstate command async. + /// </summary> + /// <param name="sessionId">The session id.</param> + /// <param name="request">The request.</param> + /// <returns>Task.</returns> + Task SendPlaystateCommandAsync(string sessionId, PlayStateRequest request); + + /// <summary> /// Sends the play command async. /// </summary> /// <param name="sessionId">The session id.</param> |
