mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-27 03:53:36 +00:00
8 lines
367 B
C#
8 lines
367 B
C#
|
|
namespace AIStudio.Tools.ChatArchive;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Reports the progress of an export or import operation.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="ProcessedChats">The number of chats processed so far.</param>
|
||
|
|
/// <param name="TotalChats">The total number of chats to process.</param>
|
||
|
|
public readonly record struct ChatArchiveProgress(int ProcessedChats, int TotalChats);
|