2019-12-12 09:53:05 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-12 09:53:05 +05:30
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StopWatch represent a running stopwatch
|
|
|
|
type StopWatch struct {
|
|
|
|
// swagger:strfmt date-time
|
2020-09-05 17:28:33 +05:30
|
|
|
Created time.Time `json:"created"`
|
2021-01-21 20:21:52 +05:30
|
|
|
Seconds int64 `json:"seconds"`
|
|
|
|
Duration string `json:"duration"`
|
2020-09-05 17:28:33 +05:30
|
|
|
IssueIndex int64 `json:"issue_index"`
|
|
|
|
IssueTitle string `json:"issue_title"`
|
|
|
|
RepoOwnerName string `json:"repo_owner_name"`
|
|
|
|
RepoName string `json:"repo_name"`
|
2019-12-12 09:53:05 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// StopWatches represent a list of stopwatches
|
|
|
|
type StopWatches []StopWatch
|