8 lines
110 B
Go
8 lines
110 B
Go
|
package model
|
||
|
|
||
|
type ReplyContext struct {
|
||
|
InReplyToID string
|
||
|
InReplyToName string
|
||
|
ReplyContent string
|
||
|
}
|