├── .github ├── FUNDING.yml └── workflows │ ├── dotnet.yml │ └── release.yml ├── .gitignore ├── Deployf.Botf.sln ├── Deployf.Botf ├── ArgumentBinding │ ├── ArgumentAttributeBindState.cs │ ├── ArgumentBindBoolean.cs │ ├── ArgumentBindBridge.cs │ ├── ArgumentBindDateTime.cs │ ├── ArgumentBindEnum.cs │ ├── ArgumentBindGuid.cs │ ├── ArgumentBindInt32.cs │ ├── ArgumentBindInt64.cs │ ├── ArgumentBindSingle.cs │ ├── ArgumentBindString.cs │ ├── ArgumentBinder.cs │ └── IArgumentBind.cs ├── Attributes │ ├── ActionAttribute.cs │ ├── AllowAnonymousAttribute.cs │ ├── AuthorizeAttribute.cs │ ├── FilterAttribute.cs │ ├── Handle.cs │ ├── OnAttribute.cs │ └── StateAttribute.cs ├── BotController.cs ├── BotControllerState.cs ├── BotfProgram.cs ├── Deployf.Botf.csproj ├── Messages │ ├── MessageBuilder.cs │ └── MessageSender.cs ├── Middlewares │ ├── BotControllersAuthMiddleware.cs │ ├── BotControllersBeforeAllMiddleware.cs │ ├── BotControllersChainMiddleware.cs │ ├── BotControllersExceptionMiddleware.cs │ ├── BotControllersFSMMiddleware.cs │ ├── BotControllersInvokeMiddleware.cs │ ├── BotControllersMiddleware.cs │ └── BotControllersUnknownMiddleware.cs ├── Plugins │ ├── Calendar │ │ ├── CalendarMessageBuilder.cs │ │ └── CalendarState.cs │ └── FlagMessageBuilder.cs ├── Properties │ └── launchSettings.json ├── StartupExtensions.cs ├── System │ ├── BotContextAccessor.cs │ ├── BotControllerFactory.cs │ ├── BotControllerRoutes.cs │ ├── BotControllerStateService.cs │ ├── BotControllersInvoker.cs │ ├── BotRoutesExtensions.cs │ ├── BotServiceProvider.cs │ ├── BotfBot.cs │ ├── BotfException.cs │ ├── BotfOptions.cs │ ├── ChainStorage.cs │ ├── ChainTimeoutException.cs │ ├── ConnectionString.cs │ ├── CustomUpdatePollingManager.cs │ ├── Filters.cs │ ├── GlobalStateService.cs │ ├── IBotContextAccessor.cs │ ├── IGlobalStateService.cs │ ├── IKeyGenerator.cs │ ├── IKeyValueStorage.cs │ ├── InMemoryKeyValueStorage.cs │ ├── NumberExtensions.cs │ ├── Paging │ │ ├── PageFilter.cs │ │ ├── Paging.cs │ │ └── PagingService.cs │ ├── RouteStateSkipFunction.cs │ ├── StringExtensions.cs │ ├── TimeSpanFormatExtensions.cs │ ├── UpdateContextExtensions.cs │ └── UpdateMessageStrategies │ │ ├── EditTextMessageStrategy.cs │ │ ├── IUpdateMessageStrategy.cs │ │ ├── IUpdateMessageStrategyFactory.cs │ │ ├── MediaToMediaFileStrategy.cs │ │ ├── MediaToPlainTextStrategy.cs │ │ ├── PlainTextToMediaStrategy.cs │ │ └── UpdateMessageContext.cs ├── Telegram.Bot.Framework │ ├── ASP.NET Core │ │ └── TelegramBotMiddleware.cs │ ├── Abstractions │ │ ├── IBot.cs │ │ ├── IBotBuilder.cs │ │ ├── IBotOptions.cs │ │ ├── IBotServiceProvider.cs │ │ ├── IUpdateContext.cs │ │ ├── IUpdateHandler.cs │ │ ├── IUpdatePollingManager.cs │ │ └── UpdateDelegate.cs │ ├── BotBase.cs │ ├── BotOptions.cs │ ├── Update Pipeline │ │ └── BotBuilder.cs │ └── UpdateContext.cs ├── Users │ ├── BotUserService.cs │ ├── IBotUserService.cs │ └── UserClaims.cs └── deployf_logo_sq_128.png ├── Examples ├── .gitignore ├── Deployf.Botf.ActionButtonsExample │ ├── Deployf.Botf.ActionButtonsExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.ActionsAndQueryExample │ ├── Deployf.Botf.ActionsAndQueryExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.CalendarKeyboardExample │ ├── Deployf.Botf.CalendarKeyboardExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.ChainedExample │ ├── Deployf.Botf.ChainedExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.ControllerStateExample │ ├── Deployf.Botf.ControllerStateExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.GlobalStateMachineExample │ ├── Deployf.Botf.GlobalStateMachineExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.HelloExample │ ├── Deployf.Botf.HelloExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.MediaExample │ ├── Deployf.Botf.MediaExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.PingExample │ ├── Deployf.Botf.PingExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.ReminderBot │ ├── Deployf.Botf.ReminderBot.csproj │ ├── MainController.cs │ ├── Models.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ReminderController.cs │ ├── ReminderJob.cs │ ├── UserService.cs │ └── appsettings.json ├── Deployf.Botf.ScheduleExample │ ├── AdminController.cs │ ├── Deployf.Botf.ScheduleExample.csproj │ ├── MainController.cs │ ├── Models.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SlotController.Adding.cs │ ├── SlotController.Admin.cs │ ├── SlotController.Filling.cs │ ├── SlotController.Views.cs │ ├── SlotController.cs │ ├── SlotService.cs │ ├── UserService.cs │ └── appsettings.json ├── Deployf.Botf.SendAndUpdateMessagesExample │ ├── Deployf.Botf.SendAndUpdateMessagesExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Deployf.Botf.UnknownHandlingExample │ ├── Deployf.Botf.UnknownHandlingExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json └── Deployf.Botf.WebAppExample │ ├── Deployf.Botf.WebAppExample.csproj │ ├── Pages │ └── Index.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ └── appsettings.json ├── LICENSE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: deployf 2 | -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/.gitignore -------------------------------------------------------------------------------- /Deployf.Botf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf.sln -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentAttributeBindState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentAttributeBindState.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindBoolean.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindBridge.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindDateTime.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindEnum.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindGuid.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindInt32.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindInt64.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindSingle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindSingle.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBindString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBindString.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/ArgumentBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/ArgumentBinder.cs -------------------------------------------------------------------------------- /Deployf.Botf/ArgumentBinding/IArgumentBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/ArgumentBinding/IArgumentBind.cs -------------------------------------------------------------------------------- /Deployf.Botf/Attributes/ActionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Attributes/ActionAttribute.cs -------------------------------------------------------------------------------- /Deployf.Botf/Attributes/AllowAnonymousAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Attributes/AllowAnonymousAttribute.cs -------------------------------------------------------------------------------- /Deployf.Botf/Attributes/AuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Attributes/AuthorizeAttribute.cs -------------------------------------------------------------------------------- /Deployf.Botf/Attributes/FilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Attributes/FilterAttribute.cs -------------------------------------------------------------------------------- /Deployf.Botf/Attributes/Handle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Attributes/Handle.cs -------------------------------------------------------------------------------- /Deployf.Botf/Attributes/OnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Attributes/OnAttribute.cs -------------------------------------------------------------------------------- /Deployf.Botf/Attributes/StateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Attributes/StateAttribute.cs -------------------------------------------------------------------------------- /Deployf.Botf/BotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/BotController.cs -------------------------------------------------------------------------------- /Deployf.Botf/BotControllerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/BotControllerState.cs -------------------------------------------------------------------------------- /Deployf.Botf/BotfProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/BotfProgram.cs -------------------------------------------------------------------------------- /Deployf.Botf/Deployf.Botf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Deployf.Botf.csproj -------------------------------------------------------------------------------- /Deployf.Botf/Messages/MessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Messages/MessageBuilder.cs -------------------------------------------------------------------------------- /Deployf.Botf/Messages/MessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Messages/MessageSender.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersAuthMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersAuthMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersBeforeAllMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersBeforeAllMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersChainMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersChainMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersExceptionMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersFSMMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersFSMMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersInvokeMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersInvokeMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Middlewares/BotControllersUnknownMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Middlewares/BotControllersUnknownMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Plugins/Calendar/CalendarMessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Plugins/Calendar/CalendarMessageBuilder.cs -------------------------------------------------------------------------------- /Deployf.Botf/Plugins/Calendar/CalendarState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Plugins/Calendar/CalendarState.cs -------------------------------------------------------------------------------- /Deployf.Botf/Plugins/FlagMessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Plugins/FlagMessageBuilder.cs -------------------------------------------------------------------------------- /Deployf.Botf/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Properties/launchSettings.json -------------------------------------------------------------------------------- /Deployf.Botf/StartupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/StartupExtensions.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotContextAccessor.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotControllerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotControllerFactory.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotControllerRoutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotControllerRoutes.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotControllerStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotControllerStateService.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotControllersInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotControllersInvoker.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotRoutesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotRoutesExtensions.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotServiceProvider.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotfBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotfBot.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotfException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotfException.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/BotfOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/BotfOptions.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/ChainStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/ChainStorage.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/ChainTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/ChainTimeoutException.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/ConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/ConnectionString.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/CustomUpdatePollingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/CustomUpdatePollingManager.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/Filters.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/GlobalStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/GlobalStateService.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/IBotContextAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/IBotContextAccessor.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/IGlobalStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/IGlobalStateService.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/IKeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/IKeyGenerator.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/IKeyValueStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/IKeyValueStorage.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/InMemoryKeyValueStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/InMemoryKeyValueStorage.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/NumberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/NumberExtensions.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/Paging/PageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/Paging/PageFilter.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/Paging/Paging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/Paging/Paging.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/Paging/PagingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/Paging/PagingService.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/RouteStateSkipFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/RouteStateSkipFunction.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/StringExtensions.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/TimeSpanFormatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/TimeSpanFormatExtensions.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateContextExtensions.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateMessageStrategies/EditTextMessageStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateMessageStrategies/EditTextMessageStrategy.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateMessageStrategies/IUpdateMessageStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateMessageStrategies/IUpdateMessageStrategy.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateMessageStrategies/IUpdateMessageStrategyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateMessageStrategies/IUpdateMessageStrategyFactory.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateMessageStrategies/MediaToMediaFileStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateMessageStrategies/MediaToMediaFileStrategy.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateMessageStrategies/MediaToPlainTextStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateMessageStrategies/MediaToPlainTextStrategy.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateMessageStrategies/PlainTextToMediaStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateMessageStrategies/PlainTextToMediaStrategy.cs -------------------------------------------------------------------------------- /Deployf.Botf/System/UpdateMessageStrategies/UpdateMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/System/UpdateMessageStrategies/UpdateMessageContext.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/ASP.NET Core/TelegramBotMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/ASP.NET Core/TelegramBotMiddleware.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBot.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBotBuilder.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBotOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBotOptions.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBotServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/IBotServiceProvider.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/IUpdateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/IUpdateContext.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/IUpdateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/IUpdateHandler.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/IUpdatePollingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/IUpdatePollingManager.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Abstractions/UpdateDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Abstractions/UpdateDelegate.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/BotBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/BotBase.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/BotOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/BotOptions.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/Update Pipeline/BotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/Update Pipeline/BotBuilder.cs -------------------------------------------------------------------------------- /Deployf.Botf/Telegram.Bot.Framework/UpdateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Telegram.Bot.Framework/UpdateContext.cs -------------------------------------------------------------------------------- /Deployf.Botf/Users/BotUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Users/BotUserService.cs -------------------------------------------------------------------------------- /Deployf.Botf/Users/IBotUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Users/IBotUserService.cs -------------------------------------------------------------------------------- /Deployf.Botf/Users/UserClaims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/Users/UserClaims.cs -------------------------------------------------------------------------------- /Deployf.Botf/deployf_logo_sq_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Deployf.Botf/deployf_logo_sq_128.png -------------------------------------------------------------------------------- /Examples/.gitignore: -------------------------------------------------------------------------------- 1 | **/global.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionButtonsExample/Deployf.Botf.ActionButtonsExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionButtonsExample/Deployf.Botf.ActionButtonsExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionButtonsExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionButtonsExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionButtonsExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionButtonsExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionButtonsExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionButtonsExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionsAndQueryExample/Deployf.Botf.ActionsAndQueryExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionsAndQueryExample/Deployf.Botf.ActionsAndQueryExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionsAndQueryExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionsAndQueryExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionsAndQueryExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionsAndQueryExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ActionsAndQueryExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ActionsAndQueryExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.CalendarKeyboardExample/Deployf.Botf.CalendarKeyboardExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.CalendarKeyboardExample/Deployf.Botf.CalendarKeyboardExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.CalendarKeyboardExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.CalendarKeyboardExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.CalendarKeyboardExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.CalendarKeyboardExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.CalendarKeyboardExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.CalendarKeyboardExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ChainedExample/Deployf.Botf.ChainedExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ChainedExample/Deployf.Botf.ChainedExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ChainedExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ChainedExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ChainedExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ChainedExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ChainedExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ChainedExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ControllerStateExample/Deployf.Botf.ControllerStateExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ControllerStateExample/Deployf.Botf.ControllerStateExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ControllerStateExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ControllerStateExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ControllerStateExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ControllerStateExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ControllerStateExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ControllerStateExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.GlobalStateMachineExample/Deployf.Botf.GlobalStateMachineExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.GlobalStateMachineExample/Deployf.Botf.GlobalStateMachineExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.GlobalStateMachineExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.GlobalStateMachineExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.GlobalStateMachineExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.GlobalStateMachineExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.GlobalStateMachineExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.GlobalStateMachineExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.HelloExample/Deployf.Botf.HelloExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.HelloExample/Deployf.Botf.HelloExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.HelloExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.HelloExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.HelloExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.HelloExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.HelloExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.HelloExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.MediaExample/Deployf.Botf.MediaExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.MediaExample/Deployf.Botf.MediaExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.MediaExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.MediaExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.MediaExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.MediaExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.MediaExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.MediaExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.PingExample/Deployf.Botf.PingExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.PingExample/Deployf.Botf.PingExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.PingExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.PingExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.PingExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.PingExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.PingExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.PingExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/Deployf.Botf.ReminderBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/Deployf.Botf.ReminderBot.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/MainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/MainController.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/Models.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/ReminderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/ReminderController.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/ReminderJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/ReminderJob.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/UserService.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ReminderBot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ReminderBot/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/AdminController.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/Deployf.Botf.ScheduleExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/Deployf.Botf.ScheduleExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/MainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/MainController.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/Models.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/SlotController.Adding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/SlotController.Adding.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/SlotController.Admin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/SlotController.Admin.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/SlotController.Filling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/SlotController.Filling.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/SlotController.Views.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/SlotController.Views.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/SlotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/SlotController.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/SlotService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/SlotService.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/UserService.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.ScheduleExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.ScheduleExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.SendAndUpdateMessagesExample/Deployf.Botf.SendAndUpdateMessagesExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.SendAndUpdateMessagesExample/Deployf.Botf.SendAndUpdateMessagesExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.SendAndUpdateMessagesExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.SendAndUpdateMessagesExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.SendAndUpdateMessagesExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.SendAndUpdateMessagesExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.SendAndUpdateMessagesExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.SendAndUpdateMessagesExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.UnknownHandlingExample/Deployf.Botf.UnknownHandlingExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.UnknownHandlingExample/Deployf.Botf.UnknownHandlingExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.UnknownHandlingExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.UnknownHandlingExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.UnknownHandlingExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.UnknownHandlingExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.UnknownHandlingExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.UnknownHandlingExample/appsettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.WebAppExample/Deployf.Botf.WebAppExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.WebAppExample/Deployf.Botf.WebAppExample.csproj -------------------------------------------------------------------------------- /Examples/Deployf.Botf.WebAppExample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.WebAppExample/Pages/Index.cshtml -------------------------------------------------------------------------------- /Examples/Deployf.Botf.WebAppExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.WebAppExample/Program.cs -------------------------------------------------------------------------------- /Examples/Deployf.Botf.WebAppExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.WebAppExample/Properties/launchSettings.json -------------------------------------------------------------------------------- /Examples/Deployf.Botf.WebAppExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/Examples/Deployf.Botf.WebAppExample/appsettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deploy-f/botf/HEAD/README.md --------------------------------------------------------------------------------