Add JSON
All checks were successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/all-checks-complete Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/all-checks-complete Pipeline was successful

This commit is contained in:
Smaug123
2023-09-07 20:25:13 +01:00
parent 1b1c902667
commit 98014df27d
35 changed files with 1407 additions and 113 deletions

View File

@@ -0,0 +1,19 @@
namespace AnkiStatic
type GraveType =
| Card
| Note
| Deck
member this.ToInteger () =
match this with
| GraveType.Card -> 0
| GraveType.Note -> 1
| GraveType.Deck -> 2
type Grave =
{
UpdateSequenceNumber : int
ObjectId : int
Type : GraveType
}