mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 11:02:29 +00:00
11 lines
267 B
C#
11 lines
267 B
C#
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Describes whether a persisted visual briefing can be opened by this AI Studio version.
|
||
|
|
/// </summary>
|
||
|
|
internal enum VisualBriefingProjectLoadStatus
|
||
|
|
{
|
||
|
|
AVAILABLE,
|
||
|
|
NEWER_VERSION,
|
||
|
|
UNAVAILABLE,
|
||
|
|
}
|