Fileable.swift/Sources/Fileable/Permissions.swift

18 lines
283 B
Swift

//
// Permissions.swift
// Fileable
//
// Created by Shota Shimazu on 2018/12/04.
// Copyright © 2017-2020 Shota Shimazu. All rights reserved.
//
import Foundation
public enum FileablePermissions {
case Readable
case Writeable
case Executable
case ReadOnly
}