mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
17 lines
286 B
Swift
17 lines
286 B
Swift
//
|
|
// RuntimeArchitecture.swift
|
|
// Xcodes
|
|
//
|
|
// Created by Matt Kiazyk on 2025-07-07.
|
|
//
|
|
|
|
enum RuntimeArchitecture: String, CaseIterable, Identifiable {
|
|
case arm64
|
|
case x86_64
|
|
|
|
var id: Self { self }
|
|
|
|
var displayValue: String {
|
|
return rawValue
|
|
}
|
|
}
|