mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-24 14:02:12 +00:00
31 lines
895 B
C#
31 lines
895 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Defines <c>VisualBriefingEditMode</c> for the visual briefing feature.
|
|
/// </summary>
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingEditMode>))]
|
|
public enum VisualBriefingEditMode
|
|
{
|
|
/// <summary>
|
|
/// Defines <c>INITIAL</c> for the visual briefing feature.
|
|
/// </summary>
|
|
INITIAL,
|
|
/// <summary>
|
|
/// Defines <c>CHANGE_DESIGN</c> for the visual briefing feature.
|
|
/// </summary>
|
|
CHANGE_DESIGN,
|
|
/// <summary>
|
|
/// Defines <c>UPDATE_CONTENT</c> for the visual briefing feature.
|
|
/// </summary>
|
|
UPDATE_CONTENT,
|
|
/// <summary>
|
|
/// Defines <c>REBUILD</c> for the visual briefing feature.
|
|
/// </summary>
|
|
REBUILD,
|
|
/// <summary>
|
|
/// Defines <c>IMPORT</c> for the visual briefing feature.
|
|
/// </summary>
|
|
IMPORT,
|
|
} |