mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
353 B
Swift
13 lines
353 B
Swift
|
|
@objc(SNAttachmentStream)
|
|
public protocol AttachmentStream {
|
|
@objc var encryptionKey: Data { get set }
|
|
@objc var digest: Data { get set }
|
|
@objc var serverId: UInt64 { get set }
|
|
@objc var isUploaded: Bool { get set }
|
|
@objc var downloadURL: String { get set }
|
|
|
|
@objc func readDataFromFile() throws -> Data
|
|
@objc func save()
|
|
}
|