本站源代码
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

31 lines
726B

  1. // Copyright 2017 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package structs
  5. import (
  6. "time"
  7. )
  8. // TrackedTime worked time for an issue / pr
  9. type TrackedTime struct {
  10. ID int64 `json:"id"`
  11. // swagger:strfmt date-time
  12. Created time.Time `json:"created"`
  13. // Time in seconds
  14. Time int64 `json:"time"`
  15. UserID int64 `json:"user_id"`
  16. IssueID int64 `json:"issue_id"`
  17. }
  18. // TrackedTimes represent a list of tracked times
  19. type TrackedTimes []*TrackedTime
  20. // AddTimeOption options for adding time to an issue
  21. type AddTimeOption struct {
  22. // time in seconds
  23. // required: true
  24. Time int64 `json:"time" binding:"Required"`
  25. }
上海开阖软件有限公司 沪ICP备12045867号-1