AI-Studio/app/MindWork AI Studio/Tools/Rust/FileSelectionResponse.cs

8 lines
342 B
C#
Raw Normal View History

2025-01-13 18:51:26 +00:00
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);