All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uwetrottmann.trakt5.entities.BaseEpisode Maven / Gradle / Ivy

package com.uwetrottmann.trakt5.entities;

import org.threeten.bp.OffsetDateTime;

public class BaseEpisode {

    public Integer number;

    /** collection */
    public OffsetDateTime collected_at;
    /** watched */
    public Integer plays;
    public OffsetDateTime last_watched_at;
    /** progress */
    public Boolean completed;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy