Skip to content

Commit

Permalink
feat: 북마크 Boolean 상태 값 추가(#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
whereami2048 committed May 21, 2024
1 parent e211d19 commit 3709f5c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.bamyanggang.domainmodule.domain.bookmark.enums

enum class BookmarkStatus {
ON,
OFF
enum class BookmarkStatus(val boolStatus: Boolean) {
ON(true),
OFF(false)
}

0 comments on commit 3709f5c

Please sign in to comment.