13 lines
252 B
Go
13 lines
252 B
Go
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"`
|
|
}
|