LibraryStorageDto

@Serializable
data class LibraryStorageDto(val id: UUID, val name: String, val folders: List<FolderStorageDto>)

Contains informations about a libraries storage informations.

Constructors

Link copied to clipboard
constructor(id: UUID, name: String, folders: List<FolderStorageDto>)

Properties

Link copied to clipboard
@SerialName(value = "Folders")
val folders: List<FolderStorageDto>

The storage informations about the folders used in a library.

Link copied to clipboard
@SerialName(value = "Id")
val id: UUID

The Library Id.

Link copied to clipboard
@SerialName(value = "Name")
val name: String

The name of the library.