blob: 4d947a11e58cc92183bedcaf3a0c30523dd9a8dd (
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 EmojiSearch struct {
Term string `json:"term"`
PrefixOnly bool `json:"prefix_only"`
}
|