-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b018415
commit 32d6b0b
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...ntation/src/main/kotlin/team/comit/simtong/domain/notification/dto/WebNotificationType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package team.comit.simtong.domain.notification.dto | ||
|
||
/** | ||
* | ||
* 알림의 종류를 구분하는 WebNotificationType | ||
* | ||
* @author kimbeomjin | ||
* @date 2022/12/30 | ||
* @version 1.1.0 | ||
**/ | ||
enum class WebNotificationType { | ||
|
||
/** | ||
* 메뉴 관련 알림 | ||
*/ | ||
MEAL, | ||
|
||
/** | ||
* 휴무일 관련 알림 | ||
*/ | ||
HOLIDAY, | ||
|
||
/** | ||
* 일정 관련 알림 | ||
*/ | ||
SCHEDULE | ||
|
||
} |