14 lines
360 B
C#
14 lines
360 B
C#
namespace TwitchChatTTS.Chat.Commands.Parameters
|
|
{
|
|
public class UnvalidatedParameter : ChatCommandParameter
|
|
{
|
|
public UnvalidatedParameter(bool optional = false) : base("TTS Voice Name", "Name of a TTS voice", optional)
|
|
{
|
|
}
|
|
|
|
public override bool Validate(string value)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
} |