2023-12-25 23:02:29 -05:00

14 lines
247 B
Forth

module Types
type SubDocument =
{ Foo: string
Bar: string }
type JsonDocument =
{ Id: string
Value: string
NumValue: int
Sub: SubDocument option }
let emptyDoc = { Id = ""; Value = ""; NumValue = 0; Sub = None }