Skip to content

Commit

Permalink
#178 [refactor] domain 모듈로 repository 이동 및 domain model로 리팩토링
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune committed Aug 11, 2022
1 parent 9c09cf1 commit a8e0578
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 37 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package com.hous.data.repository

import com.hous.domain.model.RuleInfo
import com.hous.domain.model.TempManagerInfo
import com.hous.domain.model.rules.RulesTableInfo
import com.hous.domain.model.rules.RulesTodayInfo

interface RulesTodayRepository {
suspend fun getTodayTodayInfoList(roomId: String): RulesTodayInfo?

suspend fun getTempManagerInfoList(
roomId: String,
rulesId: String
): TempManagerInfo?

suspend fun putTempManagerInfoList(
roomId: String,
ruleId: String,
tmpRuleMembers: List<String>
): Any?

suspend fun getMyTodoInfoList(roomId: String): List<RuleInfo>?

suspend fun putMyToDoCheckLust(
roomId: String,
ruleId: String,
isCheck: Boolean
)

suspend fun getRuleTableInfoList(
roomId: String,
categoryId: String
): RulesTableInfo?
}

0 comments on commit a8e0578

Please sign in to comment.