Mist/Shared/HelperToolCommandType.swift

20 lines
524 B
Swift
Raw Normal View History

2022-07-01 02:44:06 -04:00
//
// HelperToolCommandType.swift
// Mist
//
// Created by Nindi Gill on 21/6/2022.
//
import Foundation
enum HelperToolCommandType: String, Codable {
2022-12-07 19:40:00 -05:00
// swiftlint:disable:next redundant_string_enum_value
2022-07-01 02:44:06 -04:00
case remove = "remove"
2022-12-07 19:40:00 -05:00
// swiftlint:disable:next redundant_string_enum_value
2022-07-01 02:44:06 -04:00
case installer = "installer"
2022-12-07 19:40:00 -05:00
// swiftlint:disable:next redundant_string_enum_value
2022-07-01 02:44:06 -04:00
case createinstallmedia = "createinstallmedia"
2022-12-07 19:40:00 -05:00
// swiftlint:disable:next redundant_string_enum_value
2022-07-01 02:44:06 -04:00
case kill = "kill"
}