brainbuffer-go/pkg/brainbuffer/domain/summary/entity.go
2022-06-03 23:44:08 +06:00

12 lines
203 B
Go

package summary
import (
"brainbuffer/pkg/brainbuffer/domain/appointment"
"time"
)
type Summary struct {
StartTime time.Time
EndTime time.Time
Entries map[time.Time]appointment.Appointments
}