Skip to content

Commit 47e569e

Browse files
committed
Feat: GuideType 정의
1 parent 9919578 commit 47e569e

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

  • presentation/src/main/java/com/threegap/bitnagil/presentation/guide/model
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.threegap.bitnagil.presentation.guide.model
2+
3+
import androidx.annotation.DrawableRes
4+
import com.threegap.bitnagil.designsystem.R
5+
6+
enum class GuideType(
7+
val title: String,
8+
val description: String,
9+
@DrawableRes val image: Int,
10+
) {
11+
REGISTER(
12+
title = "오늘 감정 등록하기란?",
13+
description = "오늘 느끼는 감정을 선택하면, 그 기분에 맞춰 추천 루틴을 확인할 수 있어요.",
14+
image = R.drawable.img_register_guide,
15+
),
16+
RECOMMEND(
17+
title = "맞춤 추천 루틴이란?",
18+
description = "처음 설정한 목표에 맞춰 루틴을 추천받을 수 있으며,\n필요할 때 언제든 수정할 수 있어요.",
19+
image = R.drawable.img_recommend_guide,
20+
),
21+
EDIT(
22+
title = "루틴 수정하기란?",
23+
description = "등록한 루틴은 수정할 수 있으며, 변경 내용을 당일부터 또는 다음 날부터 적용하도록 선택할 수 있어요.",
24+
image = R.drawable.img_edit_guide,
25+
),
26+
}

0 commit comments

Comments
 (0)