mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-13 18:41:36 +00:00
6 lines
269 B
C#
6 lines
269 B
C#
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); |