package com.infinite.focus.server.fcm;

import java.util.ArrayList;
import java.util.List;

import com.infinite.focus.server.fcm.model.PushNotification;

public class SendStudentNotificationRequest {

	private List<Long> ids = new ArrayList<Long>();
	private Long instructor_id;
	private PushNotification push_notification;
	private boolean saveToDB;

	public List<Long> getIds() {
		return ids;
	}

	public void setIds(List<Long> ids) {
		this.ids = ids;
	}

	public Long getInstructor_id() {
		return instructor_id;
	}

	public void setInstructor_id(Long instructor_id) {
		this.instructor_id = instructor_id;
	}

	public PushNotification getPush_notification() {
		return push_notification;
	}

	public void setPush_notification(PushNotification push_notification) {
		this.push_notification = push_notification;
	}

	public boolean isSaveToDB() {
		return saveToDB;
	}

	public void setSaveToDB(boolean saveToDB) {
		this.saveToDB = saveToDB;
	}
}
