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