-
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
ba2f614
commit b5aaf26
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
simtong-application/src/main/kotlin/team/comit/simtong/global/annotation/ReadOnlyUseCase.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,13 @@ | ||
package team.comit.simtong.global.annotation | ||
|
||
/** | ||
* | ||
* 조회 기능을 담당하는 사용자 UseCase를 나타내는 어노테이션 | ||
* | ||
* @author kimbeomjin | ||
* @date 2022/08/27 | ||
* @version 1.0.0 | ||
**/ | ||
@Retention(AnnotationRetention.RUNTIME) | ||
@Target(AnnotationTarget.CLASS) | ||
annotation class ReadOnlyUseCase() |