]> git.r.bdr.sh - rbdr/lyricli/blobdiff - Sources/track.swift
Merge branch 'feature/rbdr-itunes-source' into develop
[rbdr/lyricli] / Sources / track.swift
index efc09f45173ae6a120a857ee091bcf41d4d6f7ee..ead43591661ad16939e29cd73fda6d1342418e9d 100644 (file)
@@ -1,7 +1,11 @@
-/// 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) {