Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

reaction.go 401B

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 migration
  5. // Reaction represents a reaction to an issue/pr/comment.
  6. type Reaction struct {
  7. UserID int64 `yaml:"user_id" json:"user_id"`
  8. UserName string `yaml:"user_name" json:"user_name"`
  9. Content string `json:"content"`
  10. }