mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
7 lines
274 B
C#
7 lines
274 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>
|
|
/// Data structure for selecting a directory when a previous directory was selected.
|
|
/// </summary>
|
|
/// <param name="Path">The path of the previous directory.</param>
|
|
public readonly record struct PreviousDirectory(string Path); |