-
-
Save jedsada-gh/e3ad7d944ea9d947ab6e012e5fecc991 to your computer and use it in GitHub Desktop.
This file contains 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 Student extends RealmObject { | |
@PrimaryKey | |
private int studentId; | |
private String firstName; | |
private String lastName; | |
private int age; | |
private String gender; | |
private String city; | |
//Create getter and setter | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment