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

13 lines
332 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.IRC.Replies {
public class NoPrivilegesReply : IReply {
public const int CODE = 481;
public const string LINE = @":Permission Denied- You're not an IRC operator";
public int ReplyCode => CODE;
public string GetLine() {
return LINE;
}
}
}