birdbot/common/event.go
2023-03-31 20:49:50 +00:00

20 lines
316 B
Go

package common
import (
"time"
)
// Event represents a calendar event
type Event struct {
Name string
ID string
Location string
Completed bool
DateTime time.Time
CompleteDateTime time.Time
Description string
ImageURL string
Organizer User
}