[AB-299] fixing incorrect handling of ban notifications

This commit is contained in:
Sheldan
2021-07-04 13:00:36 +02:00
parent 18929c9a01
commit bc276c0b12
2 changed files with 51 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
package dev.sheldan.abstracto.moderation.model.template.command;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@Builder
public class BanNotificationModel {
private String serverName;
private String reason;
}