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

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. }