// // AreaModel.swift // DocHub // // Created by Tristan Juricek on 6/10/14. // Copyright (c) 2014 Perforce. All rights reserved. // import Foundation // Each area represents a "starting directory" for each library. @objc protocol Area { var name: String { get } // TODO - we probably need a "file item" concept that abstracts out directories // and files? }