blob: 90e5771047ddcf2aeb27dd1b34cd58bc7f90e9ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package model
type PostContext struct {
DefaultVisibility string
ReplyContext *ReplyContext
}
type ReplyContext struct {
InReplyToID string
InReplyToName string
ReplyContent string
}
|