11 lines
180 B
Swift
11 lines
180 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
struct ShareItem: Stateable {
|
|
let id: String
|
|
let type: AttachmentType
|
|
let data: Data
|
|
let thumbnail: Data
|
|
let string: String
|
|
}
|