Shorten VisualBriefingProtectionLevel enum

This commit is contained in:
Thorsten Sommer 2026-07-30 20:46:18 +02:00
parent b4e4d5ad30
commit a30ba7974f
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 4 additions and 15 deletions

View File

@ -261,9 +261,6 @@ public partial class VisualBriefingAssistant
VisualBriefingProtectionLevel.INTERNAL => T("internal"),
VisualBriefingProtectionLevel.PRIVATE => T("private"),
VisualBriefingProtectionLevel.CONFIDENTIAL => T("confidential"),
VisualBriefingProtectionLevel.STRICTLY_CONFIDENTIAL => T("strictly confidential"),
VisualBriefingProtectionLevel.SECRET => T("secret"),
VisualBriefingProtectionLevel.TOP_SECRET => T("top secret"),
VisualBriefingProtectionLevel.OTHER => T("other"),
_ => level.ToString(),

View File

@ -12,30 +12,22 @@ public enum VisualBriefingProtectionLevel
/// 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>