sharp-chat/SharpChat.Protocol.IRC/Replies/UsersDoNotMatchReply.cs

13 lines
324 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.IRC.Replies {
public class UsersDoNotMatchReply : IReply {
public const int CODE = 502;
public const string LINE = @":Cannot change mode for other users";
public int ReplyCode => CODE;
public string GetLine() {
return LINE;
}
}
}