From cca5c4d3a409a2f746cea447bf5e329a63f56885 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 28 Dec 2025 16:21:53 +0100 Subject: [PATCH] Added documentation --- app/MindWork AI Studio/Chat/FileAttachment.cs | 4 ++++ 1 file changed, 4 insertions(+) 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) { ///