Disk Usage Item
data class DiskUsageItem(val type: FileSystemType, val path: String, val sizeInBytes: Int, val childItems: List<DiskUsageItem>?)
A directory or file in the Ditto working directory. Directories can be traversed by accessing the children
property. Files won't have any children.