···11+package models
22+33+import (
44+ "time"
55+66+ "github.com/bluesky-social/indigo/atproto/syntax"
77+)
88+99+type Spindle struct {
1010+ Id int
1111+ Owner syntax.DID
1212+ Instance string
1313+ Verified *time.Time
1414+ Created time.Time
1515+ NeedsUpgrade bool
1616+}
1717+1818+type SpindleMember struct {
1919+ Id int
2020+ Did syntax.DID // owner of the record
2121+ Rkey string // rkey of the record
2222+ Instance string
2323+ Subject syntax.DID // the member being added
2424+ Created time.Time
2525+}