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

19 lines
447 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharpChat.Protocol.IRC.Replies {
public class AdminLocation2Reply : Reply {
public const int CODE = 258;
public override int ReplyCode => CODE;
protected override string BuildLine() {
// todo: not static?
return @":Fundamentals for Legacy PCs";
}
}
}