27 lines
570 B
Swift
27 lines
570 B
Swift
//
|
|
// AddVirtualFolderDto.swift
|
|
//
|
|
// Generated by swagger-codegen
|
|
// https://github.com/swagger-api/swagger-codegen
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
/** Add virtual folder dto. */
|
|
|
|
public struct AddVirtualFolderDto: Codable {
|
|
|
|
/** Gets or sets library options. */
|
|
public var libraryOptions: AllOfAddVirtualFolderDtoLibraryOptions?
|
|
|
|
public init(libraryOptions: AllOfAddVirtualFolderDtoLibraryOptions? = nil) {
|
|
self.libraryOptions = libraryOptions
|
|
}
|
|
|
|
public enum CodingKeys: String, CodingKey {
|
|
case libraryOptions = "LibraryOptions"
|
|
}
|
|
|
|
}
|