mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
25 lines
427 B
Swift
25 lines
427 B
Swift
// Copyright (c) 2017 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
|
|
public protocol ContainerEntryInfo {
|
|
|
|
var name: String? { get }
|
|
|
|
var type: ContainerEntryType { get }
|
|
|
|
var size: Int? { get }
|
|
|
|
var accessTime: Date? { get }
|
|
|
|
var creationTime: Date? { get }
|
|
|
|
var modificationTime: Date? { get }
|
|
|
|
var permissions: Permissions? { get }
|
|
|
|
}
|