10 lines
200 B
Swift
10 lines
200 B
Swift
/// A type that can provide a relative path representation.
|
|
protocol Pathable {
|
|
|
|
// MARK: Properties
|
|
|
|
/// A read-only relative path representation.
|
|
var path: String { get }
|
|
|
|
}
|