Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

reaction.go 310B

123456789101112
  1. // Copyright 2020 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 base
  5. // Reaction represents a reaction to an issue/pr/comment.
  6. type Reaction struct {
  7. UserID int64
  8. UserName string
  9. Content string
  10. }