package com.vogella.jersey.first.response.content;

import com.google.gson.Gson;
import com.vogella.jersey.first.model.Account;
import com.vogella.jersey.first.model.AccountInfo;
import com.vogella.jersey.first.response.Response;

public class ChatMessagesContent extends ResponseContent{
	
	public AccountInfo accountInfo;
	
	public ChatMessagesContent(AccountInfo accountInfo) {
		this.accountInfo = accountInfo;
	}
}