Remove specific button state enums as they were overkill

This commit is contained in:
Maurice Parker
2020-07-13 16:26:53 -05:00
parent 4bb88363e7
commit 7643ddc173
4 changed files with 16 additions and 26 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
}