// // DepotModel.swift // DocHub // // Created by Tristan Juricek on 6/11/14. // Copyright (c) 2014 Perforce. All rights reserved. // import Foundation // Used to represent Perforce depots in a "library" that represents a Perforce // connection. struct P4Depot : HasDepotPath, Area { var time: Int var type: String var desc: String var name: String var depotPath: String { return "//\(name)" } }