2019-12-12 04:23:05 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StopWatch represent a running stopwatch
|
|
|
|
type StopWatch struct {
|
|
|
|
// swagger:strfmt date-time
|
2020-09-05 11:58:33 +00:00
|
|
|
Created time.Time `json:"created"`
|
2021-01-21 14:51:52 +00:00
|
|
|
Seconds int64 `json:"seconds"`
|
|
|
|
Duration string `json:"duration"`
|
2020-09-05 11:58:33 +00:00
|
|
|
IssueIndex int64 `json:"issue_index"`
|
|
|
|
IssueTitle string `json:"issue_title"`
|
|
|
|
RepoOwnerName string `json:"repo_owner_name"`
|
|
|
|
RepoName string `json:"repo_name"`
|
2019-12-12 04:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StopWatches represent a list of stopwatches
|
|
|
|
type StopWatches []StopWatch
|