Files
yattee/Yattee/Models/Navigation/PlayerInfoTab.swift
2026-02-08 18:33:56 +01: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")
}
}
}