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

19 lines
474 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharpChat.Protocol.IRC.ClientCommands {
public class VersionCommand : IClientCommand {
public const string NAME = @"VERSION";
public string CommandName => NAME;
public bool RequireSession => true;
public void HandleCommand(ClientCommandContext args) {
// returns version info
}
}
}