AI-Studio/app/MindWork AI Studio/Tools/Rust/FilesSelectionResponse.cs

9 lines
370 B
C#
Raw Normal View History

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);