2022-12-13 00:20:23 +01:00
|
|
|
//
|
|
|
|
// Folder.swift
|
|
|
|
// Browse
|
|
|
|
//
|
|
|
|
// Created by Javier Cicchelli on 13/12/2022.
|
|
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2022-12-16 17:20:19 +01:00
|
|
|
public struct Folder: FileSystemItem {
|
2022-12-13 00:20:23 +01:00
|
|
|
|
|
|
|
// MARK: Properties
|
|
|
|
|
|
|
|
public let id: String
|
|
|
|
public let name: String
|
|
|
|
|
|
|
|
// MARK: Initialisers
|
|
|
|
|
|
|
|
public init(
|
2022-12-13 02:02:25 +01:00
|
|
|
id: String,
|
|
|
|
name: String
|
2022-12-13 00:20:23 +01:00
|
|
|
) {
|
2022-12-13 02:02:25 +01:00
|
|
|
self.id = id
|
|
|
|
self.name = name
|
2022-12-13 00:20:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|