aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Playlists/PlaylistCreationRequest.cs
blob: e8ee49403450c9bc50a93f3be9b5d1238c10981a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#nullable disable
#pragma warning disable CS1591

using System;
using System.Collections.Generic;

namespace MediaBrowser.Model.Playlists
{
    public class PlaylistCreationRequest
    {
        public string Name { get; set; }

        public IReadOnlyList<Guid> ItemIdList { get; set; } = Array.Empty<Guid>();

        public string MediaType { get; set; }

        public Guid UserId { get; set; }
    }
}