Skip to content

Commit

Permalink
[refactor/#7] BaseResponse 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yeoncheong committed Aug 2, 2022
1 parent f009847 commit f620194
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.example.soptseminar1.data.model.response

data class BaseResponse<T>(
val status: Int,
val message: String,
val data: T?
)

0 comments on commit f620194

Please sign in to comment.