AnkiIO 1.0.2
Build, validate, import, and export Anki-compatible decks from .NET
Loading...
Searching...
No Matches
CrowdAnkiImportResult.cs
1namespace AnkiIO;
2
25public sealed record CrowdAnkiImportResult(AnkiDeck Deck, IReadOnlyList<AnkiDiagnostic> Diagnostics)
26{
29 public AnkiDeck Deck { get; init; } = Deck;
30
33 public IReadOnlyList<AnkiDiagnostic> Diagnostics { get; init; } = Diagnostics;
34}
Builds one named deck hierarchy and acts as the root for validation and export.
Definition AnkiDeck.cs:31
Returns a CrowdAnki-style import together with explicit information about concepts that could not be ...
AnkiDeck Deck
Gets the mutable imported hierarchy.
IReadOnlyList< AnkiDiagnostic > Diagnostics
Gets ordered compatibility and loss diagnostics for this import.