mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-16 11:22:34 +01:00
17 lines
275 B
Swift
17 lines
275 B
Swift
//
|
|
// ArticleExtractorButtonState.swift
|
|
// Multiplatform iOS
|
|
//
|
|
// Created by Maurice Parker on 7/6/20.
|
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum ArticleExtractorButtonState {
|
|
case error
|
|
case animated
|
|
case on
|
|
case off
|
|
}
|