2017-09-17 00:30:26 +02:00
|
|
|
//
|
|
|
|
// AccountDelegate.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 9/16/17.
|
|
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
public protocol AccountDelegate {
|
|
|
|
|
2017-09-17 21:08:50 +02:00
|
|
|
func refreshAll(for account: Account)
|
2017-09-17 00:30:26 +02:00
|
|
|
|
|
|
|
}
|