-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-#38 선택 직군 저장하고, 초기에 tod퀘스트 생성되게 함
- Loading branch information
1 parent
5eacda7
commit 68f5f3c
Showing
7 changed files
with
232 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// | ||
// CharacterModel.swift | ||
// ToD | ||
// | ||
// Created by 문영균 on 2023/05/27. | ||
// | ||
|
||
import Foundation | ||
|
||
enum characterCategory: String, CaseIterable, Codable { | ||
case none | ||
case server | ||
case frontEnd | ||
case moblie | ||
case sw | ||
case security | ||
case qa | ||
case embeded | ||
case ai | ||
|
||
var displayJobImageName: String { | ||
switch self { | ||
case .server: return "back" | ||
case .frontEnd: return "front" | ||
case .moblie: return "mobile" | ||
case .sw: return "swsolution" | ||
case .security: return "security" | ||
case .qa: return "bug" | ||
case .embeded: return "embedded" | ||
case .ai: return "ai" | ||
default: return "not selected" | ||
} | ||
} | ||
|
||
var displayJobName: String { | ||
switch self { | ||
case .server: return "서버/\n백엔드" | ||
case .frontEnd: return "프론트엔드" | ||
case .moblie: return "모바일\n" | ||
case .sw: return "SW/\n솔루션" | ||
case .security: return "보안\n" | ||
case .qa: return "QA엔지니어" | ||
case .embeded: return "임베디드\n" | ||
case .ai: return "인공지능/\n머신러닝" | ||
default: return "not selected" | ||
} | ||
} | ||
} |
Oops, something went wrong.