BotSharp/src/Infrastructure/BotSharp.Abstraction/Using.cs

24 lines
1.1 KiB
C#
Raw Normal View History

2023-05-27 01:58:31 +00:00
global using System;
global using System.Collections.Generic;
global using System.Text;
2023-08-28 05:28:14 +00:00
global using System.Linq;
2023-06-11 15:22:48 +00:00
global using System.Threading.Tasks;
2023-07-19 12:08:40 +00:00
global using System.ComponentModel.DataAnnotations;
2023-09-18 18:13:49 +00:00
global using System.Text.Json.Serialization;
2023-08-30 23:29:01 +00:00
global using BotSharp.Abstraction.Agents.Models;
2023-12-04 23:42:46 +00:00
global using BotSharp.Abstraction.Utilities;
2023-09-15 20:19:44 +00:00
global using BotSharp.Abstraction.Conversations.Models;
2023-10-27 15:18:48 +00:00
global using BotSharp.Abstraction.Agents.Enums;
2024-03-29 16:46:48 +00:00
global using BotSharp.Abstraction.Infrastructures.Enums;
global using BotSharp.Abstraction.Models;
global using BotSharp.Abstraction.Routing.Models;
2025-07-15 21:52:13 +00:00
global using BotSharp.Abstraction.Routing.Enums;
2024-03-29 16:46:48 +00:00
global using BotSharp.Abstraction.Templating;
2024-05-03 19:57:44 +00:00
global using BotSharp.Abstraction.Translation.Attributes;
2024-05-03 18:17:14 +00:00
global using BotSharp.Abstraction.Messaging.Enums;
2024-06-06 19:57:41 +00:00
global using BotSharp.Abstraction.Files.Models;
global using BotSharp.Abstraction.Files.Enums;
2024-12-09 00:29:04 +00:00
global using BotSharp.Abstraction.Knowledges.Models;
2025-04-01 20:02:19 +00:00
global using BotSharp.Abstraction.Crontab.Models;
2025-09-17 00:20:53 +00:00
global using BotSharp.Abstraction.MCP.Models;
global using BotSharp.Abstraction.Settings;