AnkiIO 1.0.2
Build, validate, import, and export Anki-compatible decks from .NET
Loading...
Searching...
No Matches
NativeDocument.cs
1namespace AnkiIO;
2
3internal sealed class NativeDocument
4{
5 public int FormatVersion { get; set; }
6
7 public string Generator { get; set; } = string.Empty;
8
9 public List<NoteTypeDto>? NoteTypes { get; set; } = [];
10
11 public DeckDto? Deck { get; set; }
12}