birdbot/common/event.go

19 lines
279 B
Go
Raw Normal View History

2023-03-30 23:51:05 -04:00
package common
import (
"time"
)
type Event struct {
Name string
ID string
Location string
Completed bool
DateTime time.Time
CompleteDateTime time.Time
Description string
ImageURL string
Organizer User
}