-/// Contains the artist and name of a track
-public class Track {
- public let name: String
- public let artist: String
+// Holds the name and artist of a track
+class Track {
+
+ // The name of the track to search for
+ let name: String
+
+ // The name of the artist
+ let artist: String
init(withName trackName: String, andArtist trackArtist: String) {