mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 17:01:36 +00:00
9 lines
370 B
C#
9 lines
370 B
C#
|
|
namespace AIStudio.Tools.Rust;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Data structure for selecting multiple files.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="UserCancelled">Was the file selection canceled?</param>
|
||
|
|
/// <param name="SelectedFilePaths">The selected files, if any.</param>
|
||
|
|
public readonly record struct FilesSelectionResponse(bool UserCancelled, IReadOnlyList<string> SelectedFilePaths);
|