amplify-swift/Amplify/DevMenu/Data/DevMenuItem.swift

21 lines
374 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
#if canImport(UIKit)
import Foundation
/// Data class for a row shown in the Developer Menu
struct DevMenuItem: Identifiable {
let id = UUID()
let type: DevMenuItemType
init(type: DevMenuItemType) {
self.type = type
}
}
#endif