gh-XcodesOrg-XcodesApp/Xcodes/Frontend/XcodeList/XcodeListCategory.swift
2021-09-16 01:08:52 +08:00

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