public class MemberInfo {
	
	public String stuName;
	public int year;
	public boolean standing;

	// implementation added to complete the class
	public MemberInfo(String name, int gradYear, boolean hasGoodStanding)
	{
		stuName = name;
		year = gradYear;
		standing = hasGoodStanding;
	}
	
	public int getGradYear()
	{
		return year;
	}
	
	public boolean inGoodStanding()
	{
		return standing;
	}
}

