| 12345678910111213141516171819202122232425 | ////  SharedData.swift//  ShareViewController////  Created by Mono Wang on 5/22/23.//import Foundationpublic struct SharedResource: Decodable, Encodable {    var name: String?    var ext: String?    var type: String?    var url: URL?}public struct SharedData: Decodable, Encodable {    var text: String?    var resources: [SharedResource]        mutating func empty() {        text = nil        resources = []    }}
 |