Created
October 17, 2018 21:32
-
-
Save fernandolopes/d0d62c5bf38aa85247d3e1f698e4c99e to your computer and use it in GitHub Desktop.
Model Partida
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
package com.example.fernando.myapplication.models; | |
/** | |
* Created by Fernando on 16/10/2018. | |
*/ | |
public class Partida { | |
private Long Id; | |
private Valor[] valores; | |
private String Time1; | |
private String Time2; | |
private String Horario; | |
public Long getId() { | |
return Id; | |
} | |
public void setId(Long id) { | |
Id = id; | |
} | |
public Valor[] getValores() { | |
return valores; | |
} | |
public void setValores(Valor[] valores) { | |
this.valores = valores; | |
} | |
public String getTime1() { | |
return Time1; | |
} | |
public void setTime1(String time1) { | |
Time1 = time1; | |
} | |
public String getTime2() { | |
return Time2; | |
} | |
public void setTime2(String time2) { | |
Time2 = time2; | |
} | |
public String getHorario() { | |
return Horario; | |
} | |
public void setHorario(String horario) { | |
Horario = horario; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment