gh-XcodesOrg-XcodesApp/Xcodes/Frontend/XcodeList/XcodeListCategory.swift
2020-12-28 12:42:28 -07:00

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