mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
17 lines
373 B
Swift
17 lines
373 B
Swift
import Foundation
|
|
|
|
enum XcodeListCategory: String, CaseIterable, Identifiable, CustomStringConvertible {
|
|
case all
|
|
case release
|
|
case beta
|
|
|
|
var id: Self { self }
|
|
|
|
var description: String {
|
|
switch self {
|
|
case .all: return "All"
|
|
case .release: return "Release"
|
|
case .beta: return "Beta"
|
|
}
|
|
}
|
|
}
|