updated nuget

This commit is contained in:
Luke Pulverenti
2014-08-06 00:18:13 -04:00
parent e3c52b6f73
commit 284bd3e9f5
14 changed files with 105 additions and 25 deletions

View File

@@ -13,6 +13,9 @@ namespace MediaBrowser.Controller.Entities
public string ItemType { get; set; }
public int? ItemYear { get; set; }
[IgnoreDataMember]
public string Id { get; set; }
/// <summary>
/// Serves as a cache
/// </summary>
@@ -27,6 +30,11 @@ namespace MediaBrowser.Controller.Entities
Type = LinkedChildType.Manual
};
}
public LinkedChild()
{
Id = Guid.NewGuid().ToString("N");
}
}
public enum LinkedChildType

View File

@@ -32,9 +32,9 @@ namespace MediaBrowser.Controller.Playlists
/// Removes from playlist.
/// </summary>
/// <param name="playlistId">The playlist identifier.</param>
/// <param name="indeces">The indeces.</param>
/// <param name="entryIds">The entry ids.</param>
/// <returns>Task.</returns>
Task RemoveFromPlaylist(string playlistId, IEnumerable<int> indeces);
Task RemoveFromPlaylist(string playlistId, IEnumerable<string> entryIds);
/// <summary>
/// Gets the playlists folder.