15 lines
320 B
Swift
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 }
|
|
}
|