mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
8 lines
364 B
C#
8 lines
364 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// Data structure for selecting a directory.
|
|
/// </summary>
|
|
/// <param name="UserCancelled">Was the directory selection canceled?</param>
|
|
/// <param name="SelectedDirectory">The selected directory, if any.</param>
|
|
public readonly record struct DirectorySelectionResponse(bool UserCancelled, string SelectedDirectory); |