aboutsummaryrefslogtreecommitdiff
path: root/Sources/track.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/track.swift')
-rw-r--r--Sources/track.swift6
1 files changed, 5 insertions, 1 deletions
diff --git a/Sources/track.swift b/Sources/track.swift
index d2a9047..ead4359 100644
--- a/Sources/track.swift
+++ b/Sources/track.swift
@@ -1,6 +1,10 @@
-/// Contains the artist and name of a track
+// 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) {