mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-24 20:52:11 +00:00
12 lines
343 B
C#
12 lines
343 B
C#
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Defines <c>VisualBriefingImportResult</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public sealed record VisualBriefingImportResult(
|
|
bool Success,
|
|
Guid BriefingId,
|
|
Guid RevisionId,
|
|
bool RequiresCopyConfirmation,
|
|
bool WasDeduplicated,
|
|
string Issue); |