mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 22:01:36 +00:00
Added documentation
This commit is contained in:
parent
2a4770eef3
commit
cca5c4d3a4
@ -5,6 +5,10 @@ namespace AIStudio.Chat;
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents an immutable file attachment with details about its type, name, path, and size.
|
/// Represents an immutable file attachment with details about its type, name, path, and size.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="Type">The type of the file attachment.</param>
|
||||||
|
/// <param name="FileName">The name of the file, including extension.</param>
|
||||||
|
/// <param name="FilePath">The full path to the file, including the filename and extension.</param>
|
||||||
|
/// <param name="FileSizeBytes">The size of the file in bytes.</param>
|
||||||
public readonly record struct FileAttachment(FileAttachmentType Type, string FileName, string FilePath, long FileSizeBytes)
|
public readonly record struct FileAttachment(FileAttachmentType Type, string FileName, string FilePath, long FileSizeBytes)
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user