27 lines
441 B
Swift
27 lines
441 B
Swift
//
|
|
// Folder.swift
|
|
// Browse
|
|
//
|
|
// Created by Javier Cicchelli on 13/12/2022.
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
//
|
|
|
|
public struct Folder {
|
|
|
|
// MARK: Properties
|
|
|
|
public let id: String
|
|
public let name: String
|
|
|
|
// MARK: Initialisers
|
|
|
|
public init(
|
|
id: String? = nil,
|
|
name: String? = nil
|
|
) {
|
|
self.id = id ?? "-"
|
|
self.name = name ?? "-"
|
|
}
|
|
|
|
}
|