Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dahyee step2 #8

Open
wants to merge 13 commits into
base: kimdahyee
Choose a base branch
from
Prev Previous commit
Next Next commit
진짜 ktlint 수정 완료
kimdahyee committed Nov 8, 2021
commit 2cade6d3316c95722e5182167b7a6259b67044f7
Original file line number Diff line number Diff line change
@@ -23,4 +23,3 @@ data class UserDetail(
@SerializedName("html_url")
val htmlUrl: String
)

Original file line number Diff line number Diff line change
@@ -5,12 +5,12 @@ package place.pic.android.plus.remote.response
* on 11월 02일, 2020
*/

data class UserSearchResponse (
data class UserSearchResponse(
val total_count: Int,
val incomplete_results: Boolean,
val items: List<Data>
) {
data class Data (
data class Data(
val login: String,
val id: Long,
val node_id: String,
@@ -30,4 +30,4 @@ data class UserSearchResponse (
val site_admin: Boolean,
val score: Double
)
}
}