initial scrobble impl.

This commit is contained in:
aj 2019-05-02 20:51:55 +01:00
parent 402491949b
commit 1e77a32b94

View File

@ -0,0 +1,21 @@
package sarsoo.fmframework.music;
public class Scrobble {
private long utc;
private Track track;
public Scrobble(long utc, Track track) {
this.utc = utc;
this.track = track;
}
public long getUTC() {
return utc;
}
public Track getTrack() {
return track;
}
}