All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.saveourtool.save.domain.SandboxFileInfo.kt Maven / Gradle / Ivy

The newest version!
package com.saveourtool.save.domain

import kotlinx.serialization.Serializable

/**
 * Class that contains metadata of Sandbox files
 *
 * @property sizeBytes size in bytes
 * @property name name of a file
 */
@Serializable
data class SandboxFileInfo(
    val name: String,
    val sizeBytes: Long,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy