Skip to content

Commit

Permalink
add: 전화번호를 Card 데이터모델에 추가 (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun99999 committed Jan 30, 2023
1 parent 7dde41d commit b79c603
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NADA-iOS-forRelease/Sources/NetworkModel/Card/Card.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ struct Card: Codable {
let cardID: String
let author: String? = ""
let background, title, name, birthDate, mbti: String
let instagram, link, cardDescription: String?
let instagram, link, cardDescription, phoneNumber: String?
let isMincho, isSoju, isBoomuk, isSauced: Bool
let oneTmi, twoTmi, threeTmi: String?

enum CodingKeys: String, CodingKey {
case cardID = "cardId"
case author, background, title, name, birthDate, mbti, instagram, link
case author, background, title, name, birthDate, mbti, instagram, link, phoneNumber
case cardDescription = "description"
case isMincho, isSoju, isBoomuk, isSauced, oneTmi, twoTmi, threeTmi
}
Expand Down

0 comments on commit b79c603

Please sign in to comment.