Channel
class Channel( val id: ChannelId = ChannelId(), var name: String, val type: ChannelType, var description: String, val channelMessages: MutableList<ChannelMessage> = mutableListOf()) : Entity<ChannelId>
Constructors
Link copied to clipboard
constructor( id: ChannelId = ChannelId(), name: String, type: ChannelType, description: String, channelMessages: MutableList<ChannelMessage> = mutableListOf())