mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
8 lines
120 B
Swift
8 lines
120 B
Swift
import Foundation
|
|
|
|
enum XcodesSheet: Identifiable {
|
|
case signIn
|
|
case twoFactor
|
|
|
|
var id: Int { hashValue }
|
|
}
|