X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/4425e9001e20e891dab7711644f83a1628788b47..27eea5168b00796ab254247a072d936195c37d31:/Sources/track.swift diff --git a/Sources/track.swift b/Sources/track.swift index efc09f4..ead4359 100644 --- a/Sources/track.swift +++ b/Sources/track.swift @@ -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) {