PlaylistCreationRequest.cs 427 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Playlists
  3. {
  4. public class PlaylistCreationRequest
  5. {
  6. public string Name { get; set; }
  7. public List<string> ItemIdList { get; set; }
  8. public string MediaType { get; set; }
  9. public string UserId { get; set; }
  10. public PlaylistCreationRequest()
  11. {
  12. ItemIdList = new List<string>();
  13. }
  14. }
  15. }