Skip to content

Commit 83a6d18

Browse files
committed
Feat: 반복루틴 단일 삭제를 위한 도메인 모델 정의
- RoutineByDayDeletion: 특정 날짜의 루틴 삭제 정보 - SubRoutineDeletionInfo: 하위 루틴 삭제 정보
1 parent 22b43bf commit 83a6d18

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.threegap.bitnagil.domain.routine.model
2+
3+
data class RoutineByDayDeletion(
4+
val routineCompletionId: Int?,
5+
val routineId: String,
6+
val subRoutineInfosForDelete: List<SubRoutineDeletionInfo>,
7+
val performedDate: String,
8+
val historySeq: Int,
9+
)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.threegap.bitnagil.domain.routine.model
2+
3+
data class SubRoutineDeletionInfo(
4+
val routineCompletionId: Int?,
5+
val subRoutineId: String,
6+
)

0 commit comments

Comments
 (0)