TextureSync/client/src/main/kotlin/org/hso/texturesyncclient/controller/net/InternalDataModel.kt

14 lines
353 B
Kotlin

package org.hso.texturesyncclient.controller.net
// These types will be converted to the model.DataModel
@Suppress("ArrayInDataClass")
data class InternalTexture(
val id : String,
val name : String,
val tags : Array<String>,
val format : String,
val resolution: Array<Int>,
val added_on : String,
val texture_hash: String
)