You've already forked FrameTour-BE
INotify
This commit is contained in:
14
src/main/java/com/ycwl/basic/notify/enums/NotifyType.java
Normal file
14
src/main/java/com/ycwl/basic/notify/enums/NotifyType.java
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user