Interface Playlist

Represents a playlist entity in the system

interface Playlist {
    extension?: string;
    icon?: string;
    playlist_coverPath?: string;
    playlist_desc?: string;
    playlist_id: string;
    playlist_name: string;
    playlist_path?: string;
    playlist_song_count?: number;
}

Properties

extension?: string

Provider extension for the playlist

icon?: string

Icon representing the playlist

playlist_coverPath?: string

Path to the playlist's cover image

playlist_desc?: string

Description of the playlist

playlist_id: string

Unique identifier for the playlist

playlist_name: string

Name of the playlist

playlist_path?: string

File path of the playlist

playlist_song_count?: number

Number of songs in the playlist