class SongData { var songURL:String; var songTitle:String; var songDescription:String; var podcast:PodcastData; function SongData(songURL:String, songTitle:String, songDescription:String,podcastData) { this.songURL = songURL; this.songTitle = songTitle; this.songDescription = songDescription; this.podcast = podcastData; } function toString():String { return songTitle+", " + songURL; } }