mirror of
https://github.com/Unkn0wnCat/calapi.git
synced 2025-04-29 18:16:19 +02:00
13 lines
237 B
Go
13 lines
237 B
Go
package db_model
|
|
|
|
import "time"
|
|
|
|
//go:generate go run github.com/objectbox/objectbox-go/cmd/objectbox-gogen
|
|
|
|
type Calendar struct {
|
|
Id uint64
|
|
Name string
|
|
Description string
|
|
|
|
DateCreated time.Time `objectbox:"date"`
|
|
}
|