io.github.jimmydbe.entities.GameDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of theGamesDbClient Show documentation
Show all versions of theGamesDbClient Show documentation
Java wrapper for the Games DB API.
package io.github.jimmydbe.entities;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Getter
public class GameDto extends Game{
public GameDto (Game game) {
super(game);
}
@Setter
private Platform platformObject;
@Setter
private List images;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy