spring-web-modules/api/src/main/kotlin/com/cubetiqs/web/modules/file/FileResponse.kt

8 lines
159 B
Kotlin
Raw Normal View History

package com.cubetiqs.web.modules.file
import java.io.File
open class FileResponse(
open var file: File? = null,
open var shortPath: String? = null,
)