stanwood/Stanwood_Debugger_iOS

View on GitHub
Example/Harlow/Protocols/Action.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  ActionItem.swift
//  Harlow_Example
//
//  Created by Lukasz Lenkiewicz on 05/01/2019.
//  Copyright © 2019 CocoaPods. All rights reserved.
//

protocol ActionItemable {
    func postAction()
}

protocol ActionItemCellable {
    var item: ActionItemable? { get }
}