Back to project page MatchHistory-League.
The source code is released under:
MIT License
If you think the Android project MatchHistory-League listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.lando.matchhistory.Models; // ww w.ja va2 s .c o m import io.realm.RealmObject; public class ParticipantIdentity extends RealmObject{ private Player player; private int participantId; public Player getPlayer() { return player; } public void setPlayer(Player player) { this.player = player; } public int getParticipantId() { return participantId; } public void setParticipantId(int participantId) { this.participantId = participantId; } }