Add option to delete your account

This commit is contained in:
2020-10-19 22:16:18 +02:00
committed by kske
parent 8bdd201b28
commit f67ca1d61d
14 changed files with 221 additions and 55 deletions

View File

@ -0,0 +1,22 @@
package envoy.event.contact;
import envoy.event.Event;
/**
* Signifies the deletion of an account.
*
* @author Leon Hofmeister
* @since Envoy Common v0.3-beta
*/
public class AccountDeletion extends Event<Long> {
private static final long serialVersionUID = 1L;
/**
* @param value the ID of the contact that was deleted
* @since Envoy Common v0.3-beta
*/
public AccountDeletion(Long value) {
super(value);
}
}