Reviewed-on: #6 Co-authored-by: Sergey Nazarov <insight.appdev@gmail.com> Co-committed-by: Sergey Nazarov <insight.appdev@gmail.com>
12 lines
386 B
C#
12 lines
386 B
C#
using Insight.TelegramBot.Handling.Matchers.CallbackQueryMatchers;
|
|
using Nocr.TelegramClient.AppServices.Bots;
|
|
|
|
namespace Nocr.TelegramClient.AppServices.Handlers.CallbackQueries.ViewSubscription;
|
|
|
|
public sealed class ViewSubscriptionMatcher : StateCallbackQueryMatcher<NocrState>
|
|
{
|
|
public ViewSubscriptionMatcher()
|
|
{
|
|
ExpectingState = NocrState.ViewSubscription;
|
|
}
|
|
} |