mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-11 17:24:04 +01:00
17 lines
290 B
Swift
17 lines
290 B
Swift
//
|
|
// AccountDelegate.swift
|
|
// DataModel
|
|
//
|
|
// Created by Brent Simmons on 7/1/17.
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol AccountDelegate: class {
|
|
|
|
func canAddItem(_ item: AnyObject, toContainer: Container) -> Bool
|
|
|
|
}
|
|
|