Files
yattee/Yattee/Models/State/CommentsLoadState.swift
2026-04-18 20:37:24 +02:00

18 lines
247 B
Swift

//
// CommentsLoadState.swift
// Yattee
//
// Comments loading state definitions.
//
import Foundation
enum CommentsLoadState: Equatable {
case idle
case loading
case loaded
case loadingMore
case disabled
case error
}