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

17 lines
750 B
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;
global using BotSharp.Abstraction.Routing.Planning;
global using BotSharp.Abstraction.Templating;
2024-04-23 16:25:05 +00:00
global using BotSharp.Abstraction.Translation.Attributes;