mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-03 07:16:31 +01:00
rework server sync
This commit is contained in:
@@ -61,6 +61,7 @@
|
||||
public const string MusicGenres = "MusicGenres";
|
||||
public const string MusicGenre = "MusicGenre";
|
||||
public const string MusicLatest = "MusicLatest";
|
||||
public const string MusicPlaylists = "MusicPlaylists";
|
||||
public const string MusicSongs = "MusicSongs";
|
||||
public const string MusicFavorites = "MusicFavorites";
|
||||
public const string MusicFavoriteArtists = "MusicFavoriteArtists";
|
||||
|
||||
@@ -21,6 +21,9 @@ namespace MediaBrowser.Model.Session
|
||||
public DeviceProfile DeviceProfile { get; set; }
|
||||
public List<string> SupportedLiveMediaTypes { get; set; }
|
||||
|
||||
public string AppUrl { get; set; }
|
||||
public string AppImageUrl { get; set; }
|
||||
|
||||
public ClientCapabilities()
|
||||
{
|
||||
PlayableMediaTypes = new List<string>();
|
||||
|
||||
@@ -26,6 +26,11 @@ namespace MediaBrowser.Model.Sync
|
||||
/// <value>The unique identifier.</value>
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the file identifier.
|
||||
/// </summary>
|
||||
/// <value>The file identifier.</value>
|
||||
public string FileId { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the item identifier.
|
||||
/// </summary>
|
||||
/// <value>The item identifier.</value>
|
||||
|
||||
Reference in New Issue
Block a user