-
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
1 parent
6c47ee9
commit bb6db6e
Showing
2 changed files
with
32 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// | ||
// MyPageItem.swift | ||
// PLUV | ||
// | ||
// Created by 백유정 on 8/30/24. | ||
// | ||
|
||
import Foundation | ||
|
||
enum MyPageItem: Int, CaseIterable { | ||
case Inquiry | ||
case TermsOfService | ||
case PrivacyPolicy | ||
case LogOut | ||
|
||
var text: String { | ||
switch self { | ||
case .Inquiry: | ||
"1:1 문의" | ||
case .TermsOfService: | ||
"서비스 이용 약관" | ||
case .PrivacyPolicy: | ||
"개인정보처리방침" | ||
case .LogOut: | ||
"로그아웃" | ||
} | ||
} | ||
} |