nim-theNewWeb/code/joplin_json_utils.nim

13 lines
166 B
Nim

# Data structure for TAGS
type Tag = object
id : string
parent_id : string
title: string
type Tags = object
items: seq[Tag]
has_more: string