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

13 lines
321 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.IRC.Replies {
public class AlreadyRegisteredReply : IReply {
public const int CODE = 462;
public const string LINE = @":You're already authenticated.";
public int ReplyCode => CODE;
public string GetLine() {
return LINE;
}
}
}