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