1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-01-09 07:44:02 +01:00
mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/MastodonUI/Protocol/StatusCompatible.swift
2024-01-08 11:17:40 +01:00

15 lines
356 B
Swift

// Copyright © 2023 Mastodon gGmbH. All rights reserved.
import Foundation
import CoreDataStack
import MastodonSDK
public protocol StatusCompatible {
var reblog: Status? { get }
var attachments: [MastodonAttachment] { get }
var isMediaSensitive: Bool { get }
var isSensitiveToggled: Bool { get }
}
extension Status: StatusCompatible {}