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.
13 lines
352 B
13 lines
352 B
5 years ago
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
||
6 years ago
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
3 years ago
|
package migration
|
||
6 years ago
|
|
||
5 years ago
|
// Reaction represents a reaction to an issue/pr/comment.
|
||
|
type Reaction struct {
|
||
4 years ago
|
UserID int64 `yaml:"user_id"`
|
||
|
UserName string `yaml:"user_name"`
|
||
5 years ago
|
Content string
|
||
6 years ago
|
}
|