mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-22 22:46:27 +00:00
9 lines
175 B
C#
9 lines
175 B
C#
|
|
using AIStudio.Chat;
|
||
|
|
|
||
|
|
namespace AIStudio.Assistants.Dynamic;
|
||
|
|
|
||
|
|
public sealed class FileAttachmentState
|
||
|
|
{
|
||
|
|
public HashSet<FileAttachment> DocumentPaths { get; set; } = [];
|
||
|
|
}
|