You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
263 B

package ru.defend.defdevteam.tstu;
/**
* Created by itsmy on 11.02.2017.
*/
public class GroupList {
public String name, rate;
public GroupList(String name, String rate){
this.name = name;
this.rate = rate;
}
}