AI-Studio/app/MindWork AI Studio/Tools/Rust/FileSelectionResponse.cs
2025-01-13 19:51:26 +01:00

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);