forked from tangled.org/core
this repo has no description
at master 460 B view raw
1package models 2 3import ( 4 "time" 5 6 "github.com/bluesky-social/indigo/atproto/syntax" 7) 8 9type Spindle struct { 10 Id int 11 Owner syntax.DID 12 Instance string 13 Verified *time.Time 14 Created time.Time 15 NeedsUpgrade bool 16} 17 18type SpindleMember struct { 19 Id int 20 Did syntax.DID // owner of the record 21 Rkey string // rkey of the record 22 Instance string 23 Subject syntax.DID // the member being added 24 Created time.Time 25}