AnkiIO 1.0.2
Build, validate, import, and export Anki-compatible decks from .NET
Loading...
Searching...
No Matches
NoteTypeDto.cs
1namespace AnkiIO;
2
3internal sealed class NoteTypeDto
4{
5 public long Id { get; set; }
6
7 public string Name { get; set; } = string.Empty;
8
9 public AnkiNoteTypeKind Kind { get; set; }
10
11 public string Css { get; set; } = string.Empty;
12
13 public List<AnkiField>? Fields { get; set; } = [];
14
15 public List<AnkiCardTemplate>? Templates { get; set; } = [];
16}
AnkiNoteTypeKind
Specifies how an AnkiNoteType turns one note into study cards.