mirror of
https://github.com/Unkn0wnCat/calapi.git
synced 2025-04-28 17:46:19 +02:00
21 lines
459 B
Go
21 lines
459 B
Go
package db_model
|
|
|
|
import "time"
|
|
|
|
//go:generate go run github.com/objectbox/objectbox-go/cmd/objectbox-gogen
|
|
|
|
type Event struct {
|
|
Id uint64
|
|
Title string
|
|
Description string
|
|
Calendar *Calendar `objectbox:"link"`
|
|
|
|
LocationLat float64
|
|
LocationLon float64
|
|
LocationName string
|
|
LocationAddr string
|
|
|
|
Start time.Time `objectbox:"date,index"`
|
|
End time.Time `objectbox:"date,index"`
|
|
DateCreated time.Time `objectbox:"date"`
|
|
}
|