Skip to content

Commit

Permalink
♻️ :: [#237] Entity / 생성자에 optional 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
junseopark0331 authored and uuuunseo committed Apr 21, 2024
1 parent 17f7538 commit 3ccab83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public struct MassageRankEntity: Equatable {
public let profileImage: String?

public init(
id: Int, rank: Int, stuNum: String, memberName: String, gender: GenderType, profileImage: String
id: Int, rank: Int, stuNum: String, memberName: String, gender: GenderType, profileImage: String?
) {
self.id = id
self.rank = rank
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public struct SelfStudyRankEntity: Equatable {
memberName: String,
gender: GenderType,
selfStudyCheck: Bool,
profileImage: String
profileImage: String?
) {
self.id = id
self.rank = rank
Expand Down

0 comments on commit 3ccab83

Please sign in to comment.