1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/models/report.go
2021-04-30 14:07:14 +02:00

11 lines
125 B
Go

package models
import "time"
type Report struct {
From time.Time
To time.Time
User *User
Summary *Summary
}