Open sekthor opened 9 months ago
Event
An Event a consists of multiple Performances (Timeslots) of participating Artists at participating Venues over a fixed span of time.
Timeslots
Artists
Venues
type Event struct { ID string Name string Start time.Time End time.Time }
type EventParticipant struct { UserId string `gorm:"primaryKey"` EventId string `gorm:"primaryKey"` }
Event
.New Entities
An
Event
a consists of multiple Performances (Timeslots
) of participatingArtists
at participatingVenues
over a fixed span of time.