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