1
0
Fork 0
mirror of https://github.com/Unkn0wnCat/calapi.git synced 2025-06-03 00:51:36 +02:00
calapi/internal/db_model/calendar.go
2023-02-24 22:17:45 +01:00

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"`
}