23 lines
413 B
Go
23 lines
413 B
Go
package model
|
|
|
|
// LoginRequest represents the login form data
|
|
type DataRequest struct {
|
|
RepoID uint `json:"repoid" form:"repoid"`
|
|
Step uint `json:"step" form:"step"`
|
|
}
|
|
|
|
type PageMeta struct {
|
|
Title string
|
|
Description string
|
|
}
|
|
|
|
type QuarterData struct {
|
|
Time float64 `json:"time"`
|
|
Quarter string `json:"quarter"`
|
|
}
|
|
|
|
type DayData struct {
|
|
Date string `json:"date"`
|
|
Time float64 `json:"time"`
|
|
}
|