mirror of
https://github.com/Unkn0wnCat/calapi.git
synced 2025-06-12 05:01:37 +02:00
Initial commit
This commit is contained in:
commit
15407746e3
37 changed files with 8525 additions and 0 deletions
13
internal/db_model/calendar.go
Normal file
13
internal/db_model/calendar.go
Normal file
|
@ -0,0 +1,13 @@
|
|||
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"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue