Created
September 12, 2016 17:28
-
-
Save codingtim/0332392086511eff19e4cf97e19bc760 to your computer and use it in GitHub Desktop.
Target start class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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