13 lines
268 B
Swift

//
// FileSystemItem.swift
// Browse
//
// Created by Javier Cicchelli on 13/12/2022.
// Copyright © 2022 Röck+Cöde. All rights reserved.
//
protocol FileSystemItem: Identifiable, Hashable, Equatable {
var id: String { get }
var name: String { get }
}