This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
hmn/src/models/jamproject.go

12 lines
226 B
Go

package models
import "time"
type JamProject struct {
ProjectID int `db:"project_id"`
JamSlug string `db:"jam_slug"`
Participating bool `db:"participating"`
JamName string
JamStartTime time.Time
}