8 lines
146 B
Swift
8 lines
146 B
Swift
import Foundation
|
|
|
|
struct DirectoryEntry: Identifiable, Hashable, Sendable {
|
|
let id = UUID()
|
|
let name: String
|
|
let isDirectory: Bool
|
|
}
|