BotSharp/src/Plugins/BotSharp.Plugin.MetaMessenger/Using.cs
2024-02-16 15:58:39 -06:00

23 lines
1 KiB
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;
global using BotSharp.Abstraction.Messaging.Enums;