Skip to content

Commit

Permalink
πŸš‘ :: [#38] Edit SigninRequest : email -> nickname
Browse files Browse the repository at this point in the history
  • Loading branch information
Xixn2 committed Oct 26, 2024
1 parent a04a2d7 commit 4bf35ad
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
import Foundation

public struct SigninRequest: Codable {
var email: String
var nickname: String
var password: String

public init(email: String, password: String) {
self.email = email
public init(nickname: String, password: String) {
self.nickname = nickname
self.password = password
}
}

0 comments on commit 4bf35ad

Please sign in to comment.