Skip to content

Commit

Permalink
✨ :: [#237] SelfStudyDomain / Entity에 profileImage 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
junseopark0331 authored and uuuunseo committed Apr 21, 2024
1 parent aaa1d50 commit 471dacf
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ struct FetchSelfStudyRankListResponseDTO: Decodable {
let list: [SelfStudyRankResponseDTO]

struct SelfStudyRankResponseDTO: Decodable {
let id: Int
let rank: Int
let id: Int
let stuNum: String
let memberName: String
let gender: GenderType
let selfStudyCheck: Bool
let profileImage: String?
}
}

Expand All @@ -23,7 +24,8 @@ extension FetchSelfStudyRankListResponseDTO.SelfStudyRankResponseDTO {
stuNum: stuNum,
memberName: memberName,
gender: gender,
selfStudyCheck: selfStudyCheck
selfStudyCheck: selfStudyCheck,
profileImage: profileImage ?? ""
)
}
}
Expand Down

0 comments on commit 471dacf

Please sign in to comment.