com.sdcalmes.sleeper.LeagueModels.Matchup Maven / Gradle / Ivy
package com.sdcalmes.sleeper.LeagueModels;
import java.util.List;
public class Matchup {
private List starters;
private List players;
private int roster_id;
private double points;
private int matchup_id;
public List getStarters() {
return starters;
}
public List getPlayers() {
return players;
}
public int getRoster_id() {
return roster_id;
}
public double getPoints() {
return points;
}
public int getMatchup_id() {
return matchup_id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy