forked from External/mage
15 lines
335 B
Java
15 lines
335 B
Java
package mage.server.services;
|
|
|
|
/**
|
|
* Responsible for gathering feedback from users and storing them in DB.
|
|
*
|
|
* @author noxx
|
|
*/
|
|
@FunctionalInterface
|
|
public interface FeedbackService {
|
|
|
|
/**
|
|
* Saves feedback.
|
|
*/
|
|
void feedback(String username, String title, String type, String message, String email, String host);
|
|
}
|