mirror of
https://github.com/yattee/yattee.git
synced 2026-02-19 17:29:45 +00:00
16 lines
344 B
Swift
16 lines
344 B
Swift
//
|
|
// VideoDetailsLoadState.swift
|
|
// Yattee
|
|
//
|
|
// Video details loading state definitions.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum VideoDetailsLoadState: Equatable {
|
|
case idle // No video loaded
|
|
case loading // Fetching full details from API
|
|
case loaded // Full details available
|
|
case error // Failed to load details
|
|
}
|