Files
yattee/Yattee/Models/State/CommentsLoadState.swift
2026-02-08 18:33:56 +01: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
}