2023-03-02 11:06:13 +01:00
|
|
|
// Copyright © 2023 Mastodon gGmbH. All rights reserved.
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import CoreDataStack
|
2023-11-22 12:32:04 +01:00
|
|
|
import MastodonSDK
|
2023-03-02 11:06:13 +01:00
|
|
|
|
|
|
|
public protocol StatusCompatible {
|
|
|
|
var reblog: Status? { get }
|
|
|
|
var attachments: [MastodonAttachment] { get }
|
|
|
|
var isMediaSensitive: Bool { get }
|
|
|
|
var isSensitiveToggled: Bool { get }
|
|
|
|
}
|
|
|
|
|
|
|
|
extension Status: StatusCompatible {}
|