yavsc/src/Yavsc.Abstract/Chat/ChatHubConstants.cs

24 lines
1.1 KiB
C#
Raw Normal View History

2019-06-14 10:03:51 +01:00
namespace Yavsc.Abstract.Chat
{
public static class ChatHubConstants
{
public const string HubGroupAuthenticated = "authenticated";
public const string HubGroupAnonymous = "anonymous";
public const string HubGroupCops= "cops";
public const string HubGroupRomsPrefix = "room_";
public const int MaxChanelName = 255;
public const string HubGroupFollowingPrefix = "fol ";
public const string AnonymousUserNamePrefix = "?";
public const string KeyParamChatUserName = "username";
public const string JustCreatedBy = "just created by ";
public const string LabYouNotOp = "you're no op.";
2026-07-04 15:28:07 +01:00
public const string LabNoSuchUser = "No such user";
public const string LabNoSuchChan = "No such chan";
2019-06-14 10:03:51 +01:00
public const string HopWontKickOp = "Half operator cannot kick any operator";
public const string LabAuthChatUser = "Authenticated chat user";
public const string NoKickOnCop = "No, you won´t, you´ĺl never do kick a cop, it is the bad.";
2026-07-04 15:28:07 +01:00
public const string LabNoJoinNoSend = "LabnoJoinNoSend";
2019-06-14 10:03:51 +01:00
}
2026-07-04 15:28:07 +01:00
}