Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.example.iptea.hearingclub;
- import io.realm.RealmObject;
- /**
- * Created by iptea on 12/11/2017.
- */
- public class HearingResults extends RealmObject {
- private String id;
- /* private String minFrequency;
- private String maxFrequency;
- private String percentage;*/
- /* public HearingResults() {
- }*/
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- /* public String getMinFrequency() {
- return minFrequency;
- }
- public void setMinFrequency(String minFrequency) {
- this.minFrequency = minFrequency;
- }
- public String getMaxFrequency() {
- return maxFrequency;
- }
- public void setMaxFrequency(String maxFrequency) {
- this.maxFrequency = maxFrequency;
- }
- public String getPercentage() {
- return percentage;
- }
- public void setPercentage(String percentage) {
- this.percentage = percentage;
- }*/
- }
Advertisement
Add Comment
Please, Sign In to add comment