All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.weixinmp.model.UserGroup Maven / Gradle / Ivy

package net.sf.weixinmp.model;

public class UserGroup {
	private int id;
	private String name;
	private int count;
	
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getCount() {
		return count;
	}
	public void setCount(int count) {
		this.count = count;
	}
	@Override
	public String toString() {
		return "UserGroup [id=" + id + ", name=" + name + ", count=" + count
				+ "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy