namespace AIStudio.Tools.Rust; /// /// Data structure for selecting multiple files. /// /// Was the file selection canceled? /// The selected files, if any. public readonly record struct FilesSelectionResponse(bool UserCancelled, IReadOnlyList SelectedFilePaths);