package com.infinite.focus.server.wall;

import java.util.ArrayList;

public class WallPostsDeleteRequest {

	private ArrayList<Long> wall_post_ids = new ArrayList<Long>();
	
	private String message = "";

	public ArrayList<Long> getWall_post_ids() {
		return wall_post_ids;
	}

	public void setWall_post_ids(ArrayList<Long> wall_post_ids) {
		this.wall_post_ids = wall_post_ids;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

}
