diff --git a/app/MindWork AI Studio/Chat/FileAttachment.cs b/app/MindWork AI Studio/Chat/FileAttachment.cs index 320f21c4..bacae923 100644 --- a/app/MindWork AI Studio/Chat/FileAttachment.cs +++ b/app/MindWork AI Studio/Chat/FileAttachment.cs @@ -5,6 +5,10 @@ namespace AIStudio.Chat; /// /// Represents an immutable file attachment with details about its type, name, path, and size. /// +/// The type of the file attachment. +/// The name of the file, including extension. +/// The full path to the file, including the filename and extension. +/// The size of the file in bytes. public readonly record struct FileAttachment(FileAttachmentType Type, string FileName, string FilePath, long FileSizeBytes) { ///