// // P4File.swift // DocHub // // Created by Tristan Juricek on 6/12/14. // Copyright (c) 2014 Perforce. All rights reserved. // import Foundation struct P4File : HasDepotPath { var depotPath: String var name: String { return depotPath.lastPathComponent } var revision: Int var action: String var type: String }