telegram-client/src/Nocr.TelegramClient.AppServices/Handlers/CallbackQueries/ViewSubscription/ViewSubscriptionMatcher.cs
Sergey Nazarov 5e99e802ec nazarovsa/subscription_commands (#6)
Reviewed-on: #6
Co-authored-by: Sergey Nazarov <insight.appdev@gmail.com>
Co-committed-by: Sergey Nazarov <insight.appdev@gmail.com>
2024-04-16 13:03:31 +00:00

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;
}
}