quintodrome/domain/base.go

16 lines
235 B
Go
Raw Normal View History

package domain
type BaseRepository interface {
NewId(fields ...string) string
CountAll() (int, error)
Exists(id string) (bool, error)
}
2016-03-03 18:44:28 -09:00
type QueryOptions struct {
SortBy string
Alpha bool
Desc bool
Offset int
Size int
}