2017-07-02 02:22:19 +02:00
|
|
|
//
|
|
|
|
// AccountDelegate.swift
|
|
|
|
// DataModel
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 7/1/17.
|
|
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2017-07-03 20:20:14 +02:00
|
|
|
public protocol AccountDelegate: class {
|
2017-07-02 02:22:19 +02:00
|
|
|
|
2017-07-03 19:29:44 +02:00
|
|
|
func canAddItem(_ item: AnyObject, toContainer: Container) -> Bool
|
2017-07-02 02:22:19 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|