Made ArticleExtractorButtonState a shared enum

This commit is contained in:
Maurice Parker
2020-07-08 02:27:16 -05:00
parent 1e03da8192
commit 909dcb3f93
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
//
// 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
}