10 lines
619 B
C#
10 lines
619 B
C#
namespace RelayShared.Services;
|
|
|
|
public enum ChannelType
|
|
{
|
|
Text, //Default channel type, handles text, links, files*, all in a linear live chat format
|
|
Voice, //Used for general voice and video calls, utilizes WebRTC in its intended use
|
|
File, //File browser for connected text channels, used for browsing files rather than scrolling through text channel
|
|
Forum, //Specific forum posts, meant to keep conversations grouped and on topic while keeping all in an easy to find place
|
|
Stage //Used for announcements and presentations, voice/video call utilizing a modified WebRTC protocol through server
|
|
} |