-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
85 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// BaseInterestType.swift | ||
// Domain | ||
// | ||
// Created by 김민호 on 1/6/25. | ||
// | ||
|
||
public enum BaseInterestType: String { | ||
case `default` | ||
case 스포츠_레저 | ||
case 문구_오피스 | ||
case 패션 | ||
case 여행 | ||
case 경제_시사 | ||
case 영화_드라마 | ||
case 맛집 | ||
case 인테리어 | ||
case IT | ||
case 디자인 | ||
case 자기계발 | ||
case 유머 | ||
case 음악 | ||
case 취업정보 | ||
|
||
var title: String { | ||
if self.rawValue.contains("_") { | ||
return self.rawValue.replacingOccurrences(of: "_", with: "/") | ||
} | ||
return self.rawValue | ||
} | ||
} |
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,13 @@ | ||
// | ||
// BaseOpenType.swift | ||
// Domain | ||
// | ||
// Created by 김민호 on 1/6/25. | ||
// | ||
|
||
public enum BaseOpenType: String { | ||
case 공개 = "PUBLIC" | ||
case 비공개 = "PRIVATE" | ||
|
||
var title: String { self.rawValue } | ||
} |
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