mastodon-ios/Mastodon/Diffable/Notification/NotificationItem.swift

17 lines
307 B
Swift
Raw Normal View History

2021-04-12 10:31:53 +02:00
//
// NotificationItem.swift
// Mastodon
//
// Created by sxiaojian on 2021/4/13.
//
import CoreData
2021-04-15 04:16:30 +02:00
import Foundation
import CoreDataStack
2021-04-12 10:31:53 +02:00
enum NotificationItem: Hashable {
case feed(record: ManagedObjectRecord<Feed>)
case feedLoader(record: ManagedObjectRecord<Feed>)
2021-04-12 10:31:53 +02:00
case bottomLoader
}