mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-14 05:28:31 -04:00
10 lines
233 B
Go
10 lines
233 B
Go
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
|
// See LICENSE.txt for license information.
|
||
|
|
|
||
|
|
package model
|
||
|
|
|
||
|
|
type TypingRequest struct {
|
||
|
|
ChannelId string `json:"channel_id"`
|
||
|
|
ParentId string `json:"parent_id"`
|
||
|
|
}
|