blob: 7fb045fc0f6de46246a59cd03a0e37096f4692c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
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"`
}
|