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())