diff options
| author | Ben Beltran <ben@nsovocal.com> | 2017-05-20 09:40:30 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2017-05-20 09:40:30 -0500 |
| commit | 29a566fada656091bf92456f6fb0f1bea5b6dca3 (patch) | |
| tree | ca3abc17d3b5077db6b6a1e6d70e4702613eb427 /Sources/track.swift | |
| parent | 85d0536f2e9a3d4596c01b263d76b2b8d9ba70ae (diff) | |
| parent | d852b84edc24f1f1bbf4c34aa359447970e732b0 (diff) | |
Merge branch 'feature/rbdr-document-and-cleanup' into develop
Diffstat (limited to 'Sources/track.swift')
| -rw-r--r-- | Sources/track.swift | 6 |
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) { |