mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 08:02:23 +00:00
13 lines
380 B
C#
13 lines
380 B
C#
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Overrides visual briefing storage for focused tests and isolated hosts.
|
||
|
|
/// </summary>
|
||
|
|
public sealed class VisualBriefingStorageOptions
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or initializes the directory in which the visualBriefings folder is created.
|
||
|
|
/// </summary>
|
||
|
|
public string? DataDirectory { get; init; }
|
||
|
|
}
|