16 lines
480 B
C#
16 lines
480 B
C#
using TwitchChatTTS.Twitch.Socket.Messages;
|
|
|
|
namespace TwitchChatTTS.Chat.Commands.Parameters
|
|
{
|
|
public class MentionParameter : CommandParameter
|
|
{
|
|
public MentionParameter(string name, bool optional = false) : base(name, optional)
|
|
{
|
|
}
|
|
|
|
public override bool Validate(string value, TwitchChatFragment[] fragments)
|
|
{
|
|
return value.StartsWith('@') && fragments.Any(f => f.Text == value && f.Mention != null);
|
|
}
|
|
}
|
|
} |