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