You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

issue.go 573 B

123456789101112131415161718192021222324
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // Copyright 2018 Jonas Franz. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package base
  6. import "time"
  7. // Issue is a standard issue information
  8. type Issue struct {
  9. Number int64
  10. PosterName string
  11. PosterEmail string
  12. Title string
  13. Content string
  14. Milestone string
  15. State string // closed, open
  16. IsLocked bool
  17. Created time.Time
  18. Closed *time.Time
  19. Labels []*Label
  20. Reactions *Reactions
  21. }