2019-12-21 08:36:44 +00:00
|
|
|
package model
|
|
|
|
|
2019-12-21 13:26:31 +00:00
|
|
|
type PostContext struct {
|
|
|
|
DefaultVisibility string
|
|
|
|
ReplyContext *ReplyContext
|
|
|
|
}
|
|
|
|
|
2019-12-21 08:36:44 +00:00
|
|
|
type ReplyContext struct {
|
|
|
|
InReplyToID string
|
|
|
|
InReplyToName string
|
|
|
|
ReplyContent string
|
|
|
|
}
|