13 lines
209 B
Go
13 lines
209 B
Go
package orm
|
|
|
|
import "time"
|
|
|
|
type Document struct {
|
|
Created time.Time `json:"createdAt" tstype:"Date"`
|
|
Modified time.Time `json:"modifiedAt" tstype:"Date"`
|
|
}
|
|
|
|
type SaveOptions struct {
|
|
SetTimestamps bool
|
|
}
|