Create new playlist dto.

CreatePlaylistDto

interface CreatePlaylistDto {
    Ids?: string[];
    IsPublic?: boolean;
    MediaType?: MediaType;
    Name?: string;
    UserId?: null | string;
    Users?: PlaylistUserPermissions[];
}

Properties

Ids?: string[]

Gets or sets item ids to add to the playlist.

CreatePlaylistDto

IsPublic?: boolean

Gets or sets a value indicating whether the playlist is public.

CreatePlaylistDto

MediaType?: MediaType

CreatePlaylistDto

Name?: string

Gets or sets the name of the new playlist.

CreatePlaylistDto

UserId?: null | string

Gets or sets the user id.

CreatePlaylistDto

Gets or sets the playlist users.

CreatePlaylistDto