mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 06:42:17 +00:00
23 lines
654 B
C#
23 lines
654 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Defines <c>VisualBriefingPreviewDevice</c> for the visual briefing feature.
|
||
|
|
/// </summary>
|
||
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingPreviewDevice>))]
|
||
|
|
public enum VisualBriefingPreviewDevice
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Defines <c>DESKTOP</c> for the visual briefing feature.
|
||
|
|
/// </summary>
|
||
|
|
DESKTOP,
|
||
|
|
/// <summary>
|
||
|
|
/// Defines <c>TABLET</c> for the visual briefing feature.
|
||
|
|
/// </summary>
|
||
|
|
TABLET,
|
||
|
|
/// <summary>
|
||
|
|
/// Defines <c>MOBILE</c> for the visual briefing feature.
|
||
|
|
/// </summary>
|
||
|
|
MOBILE,
|
||
|
|
}
|