package model import "github.com/tech/sendico/pkg/db/storable" type Indexable struct { Index int `bson:"index" json:"index"` } type IndexableRef struct { storable.Ref `bson:",inline" json:",inline"` Indexable `bson:",inline" json:",inline"` }