//
//  Persistable.swift
//  Astro
//
//  Created by Shawn Jansepar on 2015-06-09.
//  Copyright (c) 2015 Mobify Research & Development Inc. All rights reserved.
//

import Foundation

protocol Persistable {
    func save()
    func restore(contentInsets: UIEdgeInsets?, scrollIndicatorInsets: UIEdgeInsets?)
}
