package models type BookNode struct { Id int64 TokenId string ParentId int64 BookId int64 Title string Type int Markdown BookNodeMarkdown } type BookNodeMarkdown struct { Text string }