// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.31.1 package queries import ( "time" ) type Category struct { ID int32 `json:"id"` Name string `json:"name"` SortOrder int32 `json:"sort_order"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` } type Word struct { ID int32 `json:"id"` CategoryID int32 `json:"category_id"` Word string `json:"word"` Translation string `json:"translation"` Phonetic *string `json:"phonetic"` ExampleSentence *string `json:"example_sentence"` AudioUrl *string `json:"audio_url"` ImageUrl *string `json:"image_url"` SortOrder int32 `json:"sort_order"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }