2020-01-15 11:14:07 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2019-05-07 01:12:51 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-11-16 15:25:33 +00:00
|
|
|
package migration
|
2019-05-07 01:12:51 +00:00
|
|
|
|
2020-01-15 11:14:07 +00:00
|
|
|
// Reaction represents a reaction to an issue/pr/comment.
|
|
|
|
type Reaction struct {
|
2020-12-27 03:34:19 +00:00
|
|
|
UserID int64 `yaml:"user_id"`
|
|
|
|
UserName string `yaml:"user_name"`
|
2020-01-15 11:14:07 +00:00
|
|
|
Content string
|
2019-05-07 01:12:51 +00:00
|
|
|
}
|