-
-
-
-
- package structs
-
- import (
- "time"
- )
-
-
- type TrackedTime struct {
- ID int64 `json:"id"`
-
- Created time.Time `json:"created"`
-
- Time int64 `json:"time"`
- UserID int64 `json:"user_id"`
- IssueID int64 `json:"issue_id"`
- }
-
-
- type TrackedTimes []*TrackedTime
-
-
- type AddTimeOption struct {
-
-
- Time int64 `json:"time" binding:"Required"`
- }
|