[AB-300] adding ability to determine the channel names for modmail

This commit is contained in:
Sheldan
2021-07-21 01:38:04 +02:00
parent bc1eb0b55f
commit 86b9ccb164
2 changed files with 30 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package dev.sheldan.abstracto.modmail.model.template;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import java.time.Instant;
@Getter
@Setter
@Builder
public class ModMailChannelNameModel {
private Long serverId;
private Long userId;
private Instant currentDate;
private String randomText;
private String uuid;
}