This commit is contained in:
2025-01-05 16:17:52 +08:00
parent 178ad6a65e
commit 10afdb3280
11 changed files with 249 additions and 2 deletions

View File

@ -0,0 +1,14 @@
package com.ycwl.basic.notify.enums;
import lombok.Getter;
@Getter
public enum NotifyType {
SERVER_CHAN("SERVER_CHAN");
private final String type;
NotifyType(String type) {
this.type = type;
}
}