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

17 lines
377 B
Swift

//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
#if canImport(UIKit)
import Foundation
/// Implement this protocol to display information for each row in Device / Environment Information screen
protocol InfoItemProvider {
var displayName: String { get }
var information: String { get }
}
#endif