app/calendar/calendar.go

25 lines
325 B
Go
Raw Normal View History

2021-12-21 11:23:34 +00:00
package calendar
import "time"
type Calendar struct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
}
type EventGroup struct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
}
type Event struct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
UpdatedAt time.Time
}