mvm_core_ui/MVMCoreUI/BaseClasses/ButtonModelProtocol.swift
Pfeil, Scott Robert ba8058cceb button swift
2020-01-28 12:58:51 -05:00

15 lines
320 B
Swift

//
// ButtonModelProtocol.swift
// MVMCoreUI
//
// Created by Scott Pfeil on 1/28/20.
// Copyright © 2020 Verizon Wireless. All rights reserved.
//
import Foundation
public protocol ButtonModelProtocol: EnableableModelProtocol {
var enabled: Bool { get set }
var action: ActionModelProtocol { get set }
}