anytype-kotlin-wild/core-models/src/main/java/com/anytypeio/anytype/core_models/Config.kt
Evgenii Kozlov 5886fc1ae5
DROID-1654 App | Feature | Multispaces + Misc. enhancements (#300)
Co-authored-by: Konstantin Ivanov <54908981+konstantiniiv@users.noreply.github.com>
2023-10-24 12:41:32 +02:00

19 lines
504 B
Kotlin

package com.anytypeio.anytype.core_models
/**
* Anytype app configuration properties.
* @property home id of the home dashboard
* @property profile id of the current profile
* @property gateway url of the gateway for fetching files.
* @property spaceView id of space view - UI-representation of space object
*/
data class Config(
val home: Id,
val profile: Id,
val gateway: Url,
val space: Id,
val spaceView: Id,
val widgets: Id,
val analytics: Id,
val device: Id
)