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