namespace AIStudio.Tools.Rust; /// /// Data structure for selecting a file. /// /// Was the file selection canceled? /// The selected file, if any. public readonly record struct FileSelectionResponse(bool UserCancelled, string SelectedFilePath);