mirror of
https://github.com/status-im/fathom.git
synced 2025-02-28 19:10:36 +00:00
11 lines
182 B
Go
11 lines
182 B
Go
package models
|
|
|
|
type Pageview struct {
|
|
ID int64
|
|
PageID int64
|
|
VisitorID int64
|
|
ReferrerKeyword string
|
|
ReferrerUrl string
|
|
Timestamp string
|
|
}
|