Skip to content

Instantly share code, notes, and snippets.

@codingtim
Created September 12, 2016 17:28
Show Gist options
  • Save codingtim/0332392086511eff19e4cf97e19bc760 to your computer and use it in GitHub Desktop.
Save codingtim/0332392086511eff19e4cf97e19bc760 to your computer and use it in GitHub Desktop.
Target start class
public class Target {
private String code;
private String name;
private String publicIdentifier;
public Target(String code, String name, String publicIdentifier) {
this.code = code;
this.name = name;
this.publicIdentifier = publicIdentifier;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment