Files
yattee/Yattee/Models/Navigation/PlayerInfoTab.swift
2026-04-18 20:37:24 +02:00

21 lines
386 B
Swift

//
// 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")
}
}
}