mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 02:22:17 +00:00
Some checks failed
Build and Release / Determine run mode (push) Has been cancelled
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Sync Flatpak repo (push) Has been cancelled
Build and Release / Collect Flatpak artifacts (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
130 lines
4.5 KiB
C#
130 lines
4.5 KiB
C#
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Defines <c>VisualBriefingVersion</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public sealed class VisualBriefingVersion
|
|
{
|
|
/// <summary>Gets or sets the canonical data schema used by this revision.</summary>
|
|
public int SchemaVersion { get; set; } = VisualBriefingVersions.SCHEMA;
|
|
|
|
/// <summary>Gets or sets the semantic intermediate-artifact format.</summary>
|
|
public int IntermediateArtifactVersion { get; set; } = VisualBriefingVersions.INTERMEDIATE_ARTIFACT;
|
|
|
|
/// <summary>Gets or sets the evidence contract used by this revision.</summary>
|
|
public int EvidenceContractVersion { get; set; } = VisualBriefingVersions.EVIDENCE_CONTRACT;
|
|
|
|
/// <summary>Gets or sets the plan contract used by this revision.</summary>
|
|
public int PlanContractVersion { get; set; } = VisualBriefingVersions.PLAN_CONTRACT;
|
|
|
|
/// <summary>Gets or sets the content contract used by this revision.</summary>
|
|
public int ContentContractVersion { get; set; } = VisualBriefingVersions.CONTENT_CONTRACT;
|
|
|
|
/// <summary>Gets or sets the design contract used by this revision.</summary>
|
|
public int DesignContractVersion { get; set; } = VisualBriefingVersions.DESIGN_CONTRACT;
|
|
|
|
/// <summary>
|
|
/// Defines <c>VersionNumber</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public int VersionNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>RevisionId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid RevisionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>ParentRevisionId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid? ParentRevisionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>CreatedAtUtc</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public DateTimeOffset CreatedAtUtc { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>EditMode</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public VisualBriefingEditMode EditMode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>Instruction</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string Instruction { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the SHA-256 hash of the complete standalone HTML document.
|
|
/// </summary>
|
|
public string DocumentHash { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>Origin</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string Origin { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>FileName</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>DataHash</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string DataHash { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>AssetHash</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string AssetHash { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>TemplateHash</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string TemplateHash { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>CssHash</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string CssHash { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>RuntimeHash</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public string RuntimeHash { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Defines <c>ContentArtifactId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid? ContentArtifactId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>EvidenceArtifactId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid? EvidenceArtifactId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>PlanArtifactId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid? PlanArtifactId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>PresentationArtifactId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid? PresentationArtifactId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>BuildId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid? BuildId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>OperationId</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public Guid? OperationId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Defines <c>ModelContributions</c> for the visual briefing feature.
|
|
/// </summary>
|
|
public List<VisualBriefingModelContribution> ModelContributions { get; set; } = [];
|
|
} |