birdbot/common/event.go

20 lines
316 B
Go
Raw Normal View History

2023-03-30 23:51:05 -04:00
package common
import (
"time"
)
2023-03-31 20:49:50 +00:00
// Event represents a calendar event
2023-03-30 23:51:05 -04:00
type Event struct {
Name string
ID string
Location string
Completed bool
DateTime time.Time
CompleteDateTime time.Time
Description string
ImageURL string
Organizer User
}