package eu.dnetlib.espas.gui.client;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
import eu.dnetlib.espas.gui.shared.ContactUsInfo;

/**
 * Created by stefania on 5/21/15.
 */
@RemoteServiceRelativePath("contactUsService")
public interface ContactUsService extends RemoteService {

    public void sendContactUsEmail(ContactUsInfo contactUsInfo) throws Exception;
}
