summaryrefslogtreecommitdiffstats
path: root/modules/structs/issue_reaction.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/structs/issue_reaction.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/structs/issue_reaction.go b/modules/structs/issue_reaction.go
new file mode 100644
index 0000000..8d907a4
--- /dev/null
+++ b/modules/structs/issue_reaction.go
@@ -0,0 +1,21 @@
+// Copyright 2019 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+package structs
+
+import (
+ "time"
+)
+
+// EditReactionOption contain the reaction type
+type EditReactionOption struct {
+ Reaction string `json:"content"`
+}
+
+// Reaction contain one reaction
+type Reaction struct {
+ User *User `json:"user"`
+ Reaction string `json:"content"`
+ // swagger:strfmt date-time
+ Created time.Time `json:"created_at"`
+}