mirror of
https://github.com/yattee/yattee.git
synced 2026-02-20 01:39:46 +00:00
Yattee v2 rewrite
This commit is contained in:
20
Yattee/Models/Navigation/PlayerInfoTab.swift
Normal file
20
Yattee/Models/Navigation/PlayerInfoTab.swift
Normal file
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// PlayerInfoTab.swift
|
||||
// Yattee
|
||||
//
|
||||
// Player info tab definitions.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
enum PlayerInfoTab: String, CaseIterable {
|
||||
case description
|
||||
case comments
|
||||
|
||||
var title: String {
|
||||
switch self {
|
||||
case .description: return String(localized: "player.description")
|
||||
case .comments: return String(localized: "player.comments")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user