ServerEntity

@MappedEntity
data class ServerEntity(@Id val id: String, val name: String, val description: String, val owner: String, val users: List<String> = listOf(owner), val channels: List<ChannelEntity> = emptyList())

Constructors

Link copied to clipboard
constructor(@Id id: String, name: String, description: String, owner: String, users: List<String> = listOf(owner), channels: List<ChannelEntity> = emptyList())

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard