ServerDTO

data class ServerDTO(val id: String, val name: String, val description: String = "", val owner: String, val users: MutableList<String> = mutableListOf(owner), val channels: MutableList<ChannelDTO> = mutableListOf())

Constructors

Link copied to clipboard
constructor(id: String, name: String, description: String = "", owner: String, users: MutableList<String> = mutableListOf(owner), channels: MutableList<ChannelDTO> = mutableListOf())

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