15 lines
404 B
Go
15 lines
404 B
Go
package data
|
|
|
|
import "time"
|
|
|
|
type TrainingSession struct {
|
|
ID int64 `db:"id"`
|
|
Date time.Time `db:"date"`
|
|
Sets int64 `db:"sets"`
|
|
WeightLeft float64 `db:"weightLeft"`
|
|
WeightRight float64 `db:"weightRight"`
|
|
RepsPerSet int64 `db:"repsPerSet"`
|
|
Duration int64 `db:"duration"`
|
|
Program string `db:"program"`
|
|
BlockDay int64 `db:"blockDay"`
|
|
}
|