2024-08-04 19:46:10 -04:00
|
|
|
using TwitchChatTTS.Twitch.Socket.Messages;
|
|
|
|
|
2024-03-15 08:27:35 -04:00
|
|
|
namespace TwitchChatTTS.Chat.Commands.Parameters
|
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
public class UnvalidatedParameter : CommandParameter
|
2024-03-15 08:27:35 -04:00
|
|
|
{
|
2024-07-19 12:56:41 -04:00
|
|
|
public UnvalidatedParameter(string name, bool optional = false) : base(name, optional)
|
2024-03-15 08:27:35 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-08-04 19:46:10 -04:00
|
|
|
public override bool Validate(string value, ChannelChatMessage message)
|
2024-03-15 08:27:35 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|