summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/v6/model/suggest_command.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattermost/mattermost-server/v6/model/suggest_command.go')
-rw-r--r--vendor/github.com/mattermost/mattermost-server/v6/model/suggest_command.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/mattermost-server/v6/model/suggest_command.go b/vendor/github.com/mattermost/mattermost-server/v6/model/suggest_command.go
new file mode 100644
index 00000000..7fb045fc
--- /dev/null
+++ b/vendor/github.com/mattermost/mattermost-server/v6/model/suggest_command.go
@@ -0,0 +1,9 @@
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
+// See LICENSE.txt for license information.
+
+package model
+
+type SuggestCommand struct {
+ Suggestion string `json:"suggestion"`
+ Description string `json:"description"`
+}