mirror of
https://github.com/yattee/yattee.git
synced 2026-02-20 01:39:46 +00:00
18 lines
247 B
Swift
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
|
|
}
|