feat: 쿠폰 생성, 쿠폰 리스트

- 쿠폰 타입(캔, 포인트) 추가
This commit is contained in:
2025-06-09 14:47:33 +09:00
parent 7055bb9872
commit e3c33c71a0
7 changed files with 17 additions and 4 deletions

View File

@@ -5,5 +5,6 @@ enum class ActionType(val displayName: String) {
USER_AUTHENTICATION("본인인증"),
CONTENT_COMMENT("콘텐츠 댓글"),
ORDER_CONTENT_COMMENT("구매한 콘텐츠 댓글"),
LIVE_CONTINUOUS_LISTEN_30("라이브 연속 청취 30분")
LIVE_CONTINUOUS_LISTEN_30("라이브 연속 청취 30분"),
COUPON("쿠폰")
}