sharp-chat/SharpChat.Protocol.IRC/Replies/AdminLocation1Reply.cs
2022-08-30 17:05:29 +02:00

19 lines
440 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharpChat.Protocol.IRC.Replies {
public class AdminLocation1Reply : Reply {
public const int CODE = 257;
public override int ReplyCode => CODE;
protected override string BuildLine() {
// todo: not static?
return @":Microsoft Windows XP";
}
}
}