mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
11 lines
125 B
Go
11 lines
125 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type Report struct {
|
||
|
From time.Time
|
||
|
To time.Time
|
||
|
User *User
|
||
|
Summary *Summary
|
||
|
}
|