File tree Expand file tree Collapse file tree
presentation/src/main/java/com/threegap/bitnagil/presentation/guide/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments