12 lines
203 B
Go
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
|
|
}
|