PlaylistCreationRequest.cs 409 B

12345678910111213141516171819
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. using System.Collections.Generic;
  5. namespace MediaBrowser.Model.Playlists
  6. {
  7. public class PlaylistCreationRequest
  8. {
  9. public string Name { get; set; }
  10. public IReadOnlyList<Guid> ItemIdList { get; set; } = Array.Empty<Guid>();
  11. public string MediaType { get; set; }
  12. public Guid UserId { get; set; }
  13. }
  14. }