mastodon-ios/Mastodon/Diffable/User/UserItem.swift

17 lines
285 B
Swift
Raw Normal View History

2021-11-01 12:54:07 +01:00
//
// UserItem.swift
// Mastodon
//
// Created by Cirno MainasuK on 2021-11-1.
//
import Foundation
import CoreData
import CoreDataStack
2021-11-01 12:54:07 +01:00
enum UserItem: Hashable {
case user(record: ManagedObjectRecord<MastodonUser>)
2021-11-01 12:54:07 +01:00
case bottomLoader
case bottomHeader(text: String)
}