rocks.voss.toniebox.beans.toniebox.TonieContentDataBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toniebox-api Show documentation
Show all versions of toniebox-api Show documentation
API to handle request for the Toniebox
package rocks.voss.toniebox.beans.toniebox;
import lombok.Data;
import java.io.Serializable;
@Data
public class TonieContentDataBean implements Serializable {
private String file;
private float length;
private float remaining;
private boolean inProgress;
private TonieChapterBean chapters[];
}