package com.infinite.focus.server.notifications.service;

import java.util.List;

import com.infinite.focus.server.home.GetNotificationsRequest;
import com.infinite.focus.server.home.Notification;

public interface NotificationService {

	List<Notification> getNotifications(GetNotificationsRequest request);
}
