mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 12:05:04 +01:00
re-enable mobile media controller
This commit is contained in:
@@ -551,9 +551,8 @@ namespace MediaBrowser.Model.ApiClient
|
||||
/// <param name="itemId">The id of the item to browse to.</param>
|
||||
/// <param name="itemName">The name of the item to browse to.</param>
|
||||
/// <param name="itemType">The type of the item to browse to.</param>
|
||||
/// <param name="context">Optional ui context (movies, music, tv, games, etc). The client is free to ignore this.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task SendBrowseCommandAsync(string sessionId, string itemId, string itemName, string itemType, string context);
|
||||
Task SendBrowseCommandAsync(string sessionId, string itemId, string itemName, string itemType);
|
||||
|
||||
/// <summary>
|
||||
/// Sends the playstate command async.
|
||||
|
||||
@@ -145,6 +145,12 @@ namespace MediaBrowser.Model.Configuration
|
||||
/// <value>The title format string.</value>
|
||||
public string Title { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the description.
|
||||
/// </summary>
|
||||
/// <value>The description.</value>
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the disabled services.
|
||||
/// </summary>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
using MediaBrowser.Model.Dto;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using MediaBrowser.Model.MediaInfo;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using MediaBrowser.Model.MediaInfo;
|
||||
|
||||
namespace MediaBrowser.Model.Dlna
|
||||
{
|
||||
|
||||
@@ -78,6 +78,8 @@ namespace MediaBrowser.Model.Notifications
|
||||
|
||||
public string DefaultTitle { get; set; }
|
||||
|
||||
public string DefaultDescription { get; set; }
|
||||
|
||||
public List<string> Variables { get; set; }
|
||||
|
||||
public NotificationTypeInfo()
|
||||
|
||||
Reference in New Issue
Block a user