1package models
2
3import "time"
4
5type PostLabel struct {
6 Did string `ch:"did"`
7 Rkey string `ch:"rkey"`
8 CreatedAt time.Time `ch:"created_at"`
9 Text string `ch:"text"`
10 Label string `ch:"label"`
11 EntityId string `ch:"entity_id"`
12 Description string `ch:"description"`
13 Topic string `ch:"topic"`
14}