mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 20:32:11 +00:00
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Defines <c>VisualBriefingProtectionLevel</c> for the visual briefing feature.
|
|
/// </summary>
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingProtectionLevel>))]
|
|
public enum VisualBriefingProtectionLevel
|
|
{
|
|
/// <summary>
|
|
/// Defines <c>PUBLIC</c> for the visual briefing feature.
|
|
/// </summary>
|
|
PUBLIC,
|
|
/// <summary>
|
|
/// Defines <c>INTERNAL</c> for the visual briefing feature.
|
|
/// </summary>
|
|
INTERNAL,
|
|
/// <summary>
|
|
/// Defines <c>PRIVATE</c> for the visual briefing feature.
|
|
/// </summary>
|
|
PRIVATE,
|
|
/// <summary>
|
|
/// Defines <c>CONFIDENTIAL</c> for the visual briefing feature.
|
|
/// </summary>
|
|
CONFIDENTIAL,
|
|
/// <summary>
|
|
/// Defines <c>STRICTLY_CONFIDENTIAL</c> for the visual briefing feature.
|
|
/// </summary>
|
|
STRICTLY_CONFIDENTIAL,
|
|
/// <summary>
|
|
/// Defines <c>SECRET</c> for the visual briefing feature.
|
|
/// </summary>
|
|
SECRET,
|
|
/// <summary>
|
|
/// Defines <c>TOP_SECRET</c> for the visual briefing feature.
|
|
/// </summary>
|
|
TOP_SECRET,
|
|
/// <summary>
|
|
/// Defines <c>OTHER</c> for the visual briefing feature.
|
|
/// </summary>
|
|
OTHER,
|
|
} |