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