You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
597 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace StartServerWPF.Modules.Main.Model
{
class CSMessage
{
public const string heartbeat = "heartbeat";
public const string sigin = "sigin";
public const string offer = "offer";
public const string subscribe = "subscribe";
public const string unsubscribe = "unsubscribe";
public const string publish = "publish";
public const string close = "close";
public const string kickoff = "kickoff";
public const string webhook = "webhook";
}
}