bodytrack/api/internal/services/stats.go

13 lines
215 B
Go

package services
import (
"time"
)
type WeightLog struct {
ID uint64 `json:"id"`
UserID uint64 `json:"userId"`
Value float64 `json:"value"`
RecordedTS time.Time `json:"recordedTs"`
}