BotSharp/src/Plugins/BotSharp.Plugin.MetaMessenger/Using.cs
2023-11-24 17:26:33 -06:00

23 lines
1,009 B
C#

global using System;
global using System.IO;
global using System.Text.Json;
global using System.Threading;
global using System.Threading.Tasks;
global using System.Collections.Generic;
global using System.Runtime.Serialization;
global using System.Text.Json.Serialization;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Logging;
global using Microsoft.Extensions.Configuration;
global using BotSharp.Abstraction.Plugins;
global using BotSharp.Plugin.MetaMessenger.GraphAPIs;
global using BotSharp.Plugin.MetaMessenger.Settings;
global using BotSharp.Abstraction.Utilities;
global using BotSharp.Plugin.MetaMessenger.Services;
global using BotSharp.Plugin.MetaMessenger.WebhookModels;
global using BotSharp.Plugin.MetaMessenger.MessagingModels;
global using BotSharp.Abstraction.Messaging;
global using BotSharp.Abstraction.Conversations.Models;
global using BotSharp.Abstraction.Conversations;
global using BotSharp.Abstraction.Messaging.Models.RichContent.Template;