Reviewed-on: #3 Co-authored-by: Sergey Nazarov <insight.appdev@gmail.com> Co-committed-by: Sergey Nazarov <insight.appdev@gmail.com>
11 lines
296 B
C#
11 lines
296 B
C#
using Insight.TelegramBot.Handling.Matchers.TextMatchers;
|
|
|
|
namespace Nocr.TelegramClient.AppServices.Handlers.Messages.SubscribeMessage;
|
|
|
|
public sealed class SubscribeMessageMatcher : TextStartWithUpdateMatcher
|
|
{
|
|
public SubscribeMessageMatcher()
|
|
{
|
|
Template = "/subscribe";
|
|
}
|
|
} |