PlaylistCreationRequest.cs 400 B

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