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

cn.zhengzhanpeng.itchat4j.utils.enums.VerifyFriendEnum Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package cn.zhengzhanpeng.itchat4j.utils.enums;

public enum VerifyFriendEnum {

	ADD(2, "添加"),
	ACCEPT(3, "接受");

	private int code;
	private String desc;

	private VerifyFriendEnum(int code, String desc) {
		this.code = code;
		this.desc = desc;
	}

	public int getCode() {
		return code;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy