Skip to content

Commit

Permalink
Add constructors to SpeakerPlaybackPosition
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdgeisler committed Nov 28, 2022
1 parent 4aef367 commit 46ababc
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,12 @@
public class SpeakerPlaybackPosition {
public Integer position;
public LocalDateTime timestamp;

public SpeakerPlaybackPosition(final Integer position, final LocalDateTime timestamp) {
this.position = position;
this.timestamp = timestamp;
}

public SpeakerPlaybackPosition() {
}
}

0 comments on commit 46ababc

Please sign in to comment.