mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 22:52:10 +00:00
28 lines
830 B
C#
28 lines
830 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Records how one source contributed to canonical content.
|
|
/// </summary>
|
|
[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Disallow)]
|
|
public sealed class VisualBriefingSourceCoverage
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the source handle, see <c>VisualBriefingSourceHandles</c>.
|
|
/// </summary>
|
|
[JsonRequired]
|
|
public string SourceId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the coverage classification.
|
|
/// </summary>
|
|
[JsonRequired]
|
|
public VisualBriefingSourceCoverageKind Coverage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a short, non-sensitive explanation.
|
|
/// </summary>
|
|
[JsonRequired]
|
|
public string Reason { get; set; } = string.Empty;
|
|
} |