Created
January 13, 2017 03:54
-
-
Save travisdachi/15cdcd241f7eb28f0b9151ec1754ca2b to your computer and use it in GitHub Desktop.
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 Person { | |
public String name; | |
public int age; | |
public boolean isChecked; | |
public Person(String name, int age) { | |
this.name = name; | |
this.age = age; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment