Christopher Hotchkiss Christopher Hotchkiss
Login

Code

remindwall / RWPureSwift / Sources / PhotoKitAsync / AssetType.swift

Back to remindwall — Current RemindWall

Download this file

//
//  AssetType.swift
//  RWPureSwift
//
//  Created by Christopher Hotchkiss on 9/22/24.
//
import PhotosUI

public enum AssetType: Sendable, Equatable {
    case loading
    case staticImage(UIImage)
    case livePhoto(PHLivePhoto)
    case errorPhoto(PHAsset)
}