metatext-app-ios-iphone-ipad/ViewModels/Sources/ViewModels/Entities/AlertItem.swift

13 lines
237 B
Swift
Raw Normal View History

2020-09-01 09:33:49 +02:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
public struct AlertItem: Identifiable {
public let id = UUID()
public let error: Error
2021-03-04 08:22:32 +01:00
public init(error: Error) {
self.error = error
}
2020-09-01 09:33:49 +02:00
}