Skip to content
Snippets Groups Projects
Trainer.java 191 B
Newer Older
package nl.utwente.mod4.pokemon.model;


public class Trainer extends NamedEntity {

    public String profileUrl;

    public Trainer() {
        super();
        profileUrl = null;
    }
}