Track data structure for recent skips display

interface TrackData {
    id: string;
    name: string;
    artist: string;
    album: string;
    timestamp: string;
    skipPercentage: number;
    skipCount: number;
}

Properties

id: string

Unique track identifier for React keys and linking

name: string

Track title

artist: string

Artist or group name

album: string

Album title the track belongs to

timestamp: string

ISO date string when the track was skipped

skipPercentage: number

Skip frequency as a percentage (0-100)

skipCount: number

Total number of times this track was skipped