AI-Studio/app/MindWork AI Studio/Chat/FileAttachment.cs

6 lines
269 B
C#
Raw Normal View History

2025-12-28 13:32:49 +00:00
namespace AIStudio.Chat;
/// <summary>
/// Represents an immutable file attachment with details about its type, name, path, and size.
/// </summary>
public readonly record struct FileAttachment(FileAttachmentType Type, string FileName, string FilePath, long FileSize);