mastodon-ios/Mastodon/Diffiable/Item/ComposeStatusItem.swift

17 lines
305 B
Swift
Raw Normal View History

2021-03-11 08:41:27 +01:00
//
// ComposeStatusItem.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-3-11.
//
import Foundation
import CoreData
enum ComposeStatusItem {
case replyTo(tootObjectID: NSManagedObjectID)
case toot(replyToTootObjectID: NSManagedObjectID?)
2021-03-11 08:41:27 +01:00
}
extension ComposeStatusItem: Hashable { }