23 lines
562 B
Swift
23 lines
562 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#if canImport(UIKit)
|
|
import Foundation
|
|
|
|
struct PluginInfoItem: Identifiable, InfoItemProvider {
|
|
|
|
let id = UUID()
|
|
var displayName: String
|
|
var information: String
|
|
|
|
init(displayName: String, information: String) {
|
|
self.displayName = displayName.isEmpty ? DevMenuStringConstants.unknownPlugin : displayName
|
|
self.information = information.isEmpty ? DevMenuStringConstants.notAvailable : information
|
|
}
|
|
}
|
|
#endif
|