package org.red5.confDemo;

public class User {

	public String USER_ID = null;
	public String USER_NOME = null;

	public User(String USER_ID, String USER_NOME) {
		this.USER_ID = USER_ID;
		this.USER_NOME = USER_NOME;
	}
}

