Initial commit

This commit is contained in:
Kevin Kandlbinder 2023-02-24 22:17:45 +01:00
commit 15407746e3
37 changed files with 8525 additions and 0 deletions

16
graph/model/event.go Normal file
View file

@ -0,0 +1,16 @@
package model
import (
"github.com/Unkn0wnCat/calapi/internal/db_model"
"time"
)
type Event struct {
ID string `json:"id"`
Title string `json:"title"`
Location *Location `json:"location"`
Description string `json:"description"`
Start time.Time `json:"start"`
End time.Time `json:"end"`
DbCalendar *db_model.Calendar
}