Skip to content

Instantly share code, notes, and snippets.

@maneeshaindrachapa
Last active July 28, 2021 19:15
Show Gist options
  • Save maneeshaindrachapa/3a388a9b6338306100311d93570166bc to your computer and use it in GitHub Desktop.
Save maneeshaindrachapa/3a388a9b6338306100311d93570166bc to your computer and use it in GitHub Desktop.
org.wso2.carbon.game.producer.model.Champion
package org.wso2.carbon.game.producer.model;
public class Champion {
private String championName;
public Champion(String championName) {
this.championName = championName;
}
public String getChampionName() {
return championName;
}
public void setChampionName(String championName) {
this.championName = championName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment