mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 19:40:27 +00:00
9 lines
180 B
Go
9 lines
180 B
Go
|
package models
|
||
|
|
||
|
// Site represents a group for tracking data
|
||
|
type Site struct {
|
||
|
ID int64 `db:"id"`
|
||
|
TrackingID string `db:"tracking_id"`
|
||
|
Name string `db:"name"`
|
||
|
}
|